Would be interesting to see comparisons between different versions automagically.
For example: the current solution to 001 with list comprehensions in contrast to a generator expression
# current
print(sum([n for n in range(1000) if n % 3 == 0 or n % 5 == 0]))
# new
print(sum(n for n in range(1000) if n % 3 == 0 or n % 5 == 0))
Storing a README in each subdirectory with the current stats (cpu time and memory consumption) would be nice.
Would be interesting to see comparisons between different versions automagically.
For example: the current solution to 001 with list comprehensions in contrast to a generator expression
Storing a README in each subdirectory with the current stats (cpu time and memory consumption) would be nice.