Skip to content

Agnostic Omniscience ProfilerΒ #12

@dsevero

Description

@dsevero

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions