Problem 42638. Number of active Cody players by date
I'm looking to start a series of problems related to web scraping. In this problem, you are given a date in 'dd mmm yyyy' format and must return the total number of active Cody players as of that date. Active is defined as having a nonzero score.
Examples
numcodyplayers('1 Jan 2000') returns 0
because Cody did not exist (at least not publicly) at that time
numcodyplayers('26 Jan 2012') returns 260
because in the first week of recorded activity, 260 unique players participated.
Notes
- Players who were active on or prior to the input date count toward the output. For instance, if the input date is yesterday, then all activity prior to 12:00am this morning should be included.
- You may find this recent blog post helpful for getting started.
- As tempting as it may be, I encourage you not to hard-code the answers. I will update the test suite if this becomes an issue.
Solution Stats
Problem Comments
-
6 Comments
yes,it's very strange,at the bottom of that page it shows "5951 – 6000 of 6,245"
Somewhere between 2014-2015 cody activity pages lost about 150k entries i believe it happened when cody suffered from spamming attack. http://www.mathworks.com/matlabcentral/trendy/plots/675 According to this plot, it was about a half of entries cody had that time. (Perhaps "too strong" antispam filters?) Lot of other things were affected too. You cannot see some older solutions (sometimes direct link works, if you know the solution number). Here is another good example: http://www.mathworks.com/matlabcentral/cody/badges/12 http://www.mathworks.com/matlabcentral/cody/players?term=badge%3A%22Celebrity%22
How many players awarded this badge? 5? 10? 11?
By now probably the most accurate data are stored in José trend http://www.mathworks.com/matlabcentral/trendy/trends/2048 which is recording since July 2013
Solution Comments
Show commentsProblem Recent Solvers6
Suggested Problems
-
2966 Solvers
-
8997 Solvers
-
150 Solvers
-
330 Solvers
-
299 Solvers
More from this Author44
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!