core.noscript.text
Want to get involved? We're always looking for ideas and content for Weekly Challenges.
4
I think this challenge should not be categorized as difficulty level. Using Regex can solve it easily.
Learning how to master RegEx is fun! Was able to get a simple RegEx to parse out the dates into only 3 columns but then had to do more to Replace those to match the majority column.First RegEx used:(\d*-\u+-\d*)|(\w+ \d*, \d*)|(\w+ \d* \d*)
Spoiler
Solution:
my solution :)
Challenge 4 attached.