Challenge #433: Ogden’s Basic English – Making Words Count
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
9 - Comet
08-12-2024
08:57 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
All,
I found a discrepancy: You get 854 words if you include less, least, more, most. However, when you drop these the count is off just slightly as you get 59 Ps and 22 Gs whereas the solution has 60 Ps and 23 Gs that I verified by copying, pasting, tokenizing and counting....My solution is below.
SaraHamdoun
8 - Asteroid
08-15-2024
06:26 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Garrett_Stoker
8 - Asteroid
08-19-2024
01:18 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Joe-Smith-JLL
7 - Meteor
08-22-2024
06:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Similar to others, I got a different result for G and P, but match with the main list.
AshaDaniels
8 - Asteroid
08-23-2024
06:26 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Caramel8
7 - Meteor
08-30-2024
11:49 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Pilsner
11 - Bolide
08-31-2024
09:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
AnaKomissaroff
8 - Asteroid
09-03-2024
02:43 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Spoiler
My Solution

15 - Aurora
09-09-2024
04:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
My solution. (Resubmit as this is not counted. I can use Download Tool at home!)
Spoiler
Workflow

Multi-Row Formula
[Type] =
IF StartsWith([DownloadData], '<div class="mw-heading mw-heading3">')
THEN "index"
ELSEIF StartsWith([DownloadData], '<p><a href=')
THEN "word"
ELSE Null()
ENDIF
Formula Tool 1
[Index] = REGEX_Replace([DownloadData], ".*>(\u)<.*", "$1")
[RecordID] = [RecordID] + 1
Formula Tool 2
[Count] = REGEX_CountMatches([DownloadData], "</a>")
Multi-Row Formula
[Type] =
IF StartsWith([DownloadData], '<div class="mw-heading mw-heading3">')
THEN "index"
ELSEIF StartsWith([DownloadData], '<p><a href=')
THEN "word"
ELSE Null()
ENDIF
Formula Tool 1
[Index] = REGEX_Replace([DownloadData], ".*>(\u)<.*", "$1")
[RecordID] = [RecordID] + 1
Formula Tool 2
[Count] = REGEX_CountMatches([DownloadData], "</a>")
RasmusFormo
8 - Asteroid
09-23-2024
02:36 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator