Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Weekly Challenges

Solve the challenge, share your solution and summit the ranks of our Community!

Also available in | Français | Português | Español | 日本語
IDEAS WANTED

Want to get involved? We're always looking for ideas and content for Weekly Challenges.

SUBMIT YOUR IDEA

Challenge #433: Ogden’s Basic English – Making Words Count

Reesetrain2
9 - Comet
9 - Comet

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.

Spoiler
Screenshot 2024-08-12 215702.png

 

SaraHamdoun
8 - Asteroid
Spoiler
#433.PNG

Garrett_Stoker
8 - Asteroid
Spoiler
Screenshot 2024-08-19 151332.png
Joe-Smith-JLL
8 - Asteroid
Spoiler
433_Solution.PNG

Similar to others, I got a different result for G and P, but match with the main list. 

AshaDaniels
8 - Asteroid
Spoiler
Screenshot 2024-08-23 142053.jpeg

Caramel8
7 - Meteor

 

Spoiler

The solution is off by 1 for G and P. 

 
 

2024-08-30 14_45_58-Alteryx Designer x64 - Challenge_433_start_file.yxmd_.png

Spoiler
 
pilsworth-bulien-com
13 - Pulsar

My solution:

Spoiler
433.png

 

AnaKomissaroff
8 - Asteroid
Spoiler
My Solution

Challenge_433_solution .png
Yoshiro_Fujimori
15 - Aurora
15 - Aurora

My solution. (Resubmit as this is not counted. I can use Download Tool at home!)

Spoiler
Workflow
Challenge_433_workflow.png
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
Spoiler
433.png