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

18 Solutions

6 Solvers

Last Solution submitted on Dec 18, 2020

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...