Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 3.34 KB

2015.md

File metadata and controls

26 lines (21 loc) · 3.34 KB

2015

badge

  • https://adventofcode.com/2015

  • hyperfine --warmup 3 -r 10 '2015/01.py'

  • find 2015 -type f -regex ".*/[0-9]*\.py" -exec hyperfine --warmup 3 -r 10 'python {}' \;

  • hyperfine --warmup 3 -r 10 'python 2015/all.py'

  • python -m cProfile 2015/01.py

  • time python 2015/01.py

  • hyperfine --warmup 3 -r 10 'find 2015 -type f -regex ".*/[0-9]*\.py" | sort -n | xargs python ' | tee 2015/benchmark.txt

  • bin/run-all-solutions.py --dir 2015 --write

Day Name Solution CI Benchmark
01 Not Quite Lisp py badge
02 I Was Told There Would Be No Math py badge
03 Perfectly Spherical Houses in a Vacuum py badge
--- ------ --------- ---
all AoC 15 txt badge
  • or ** - external solution adopted