-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
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.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels