Skip to content

DAY 1 DRILL - the Python DSA toolkit, by hand.

25 exercises, graded against the same assertions the command-line runner uses. Write your answer, press Check, and read what came back.

ex01_count_chars

Return a dict of character -> count, using collections.Counter. 'aabbb' -> {'a': 2, 'b': 3}

Ctrl/Cmd + Enter