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 #120: Popular Baby Names

tim-bakker
8 - Asteroid
Spoiler
timbakker_0-1648457673608.png

 

DanielvanLeuzen
8 - Asteroid

my solution

NiamhGillespie
6 - Meteoroid

solved

Spoiler
NiamhGillespie_0-1648659037863.png

 

mattnason1
9 - Comet

My solution

MollieC
8 - Asteroid

See my solution below!

Spoiler
Started by parsing out the Field 1 based on comma delimiter
Used regex to parse out the (\d+) digits only
Replaced F and M with Female and Male 
Sorted the data so the year was ascending (starting with 1881) and the frequency was descending (most frequent name)
Used a sample tool to take only the first sex for each year
Filtered the data on female
Joined the anchors of the filter straight into a join so that they would join next to each other based on year
Sorted the data to drop unwanted columns and rename
Challenge_120_molliec_solution.JPG
Hana111
7 - Meteor

It looks like i did take a slightly different approach but here is my solution :)

 

Spoiler
Hana111_0-1649161047416.png

 

joelmiller66
9 - Comet
Spoiler
120 screenshot.jpg
Debs11768
6 - Meteoroid

Morning All

 

Here is my solution:

 

Spoiler
Debs11768_0-1649234012391.png

 

Cheers :)

 

Debs

mgaronson
11 - Bolide

So many ways to do this! Finally used Regex albeit in an uncoventional way! Haha!

ZachBowders
7 - Meteor

I probably took 2x the steps as some solutions, looking forward to seeing how everyone else cracked it.