Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 5.32 KB

2022.md

File metadata and controls

33 lines (27 loc) · 5.32 KB

2022

badge

To profile with hyperfine - brew install hyperfine

  • hyperfine --warmup 3 -r 10 '2022/01.py'
  • find 2022 -type f -regex ".*/[0-9]*\.py" -exec hyperfine --warmup 3 -r 10 'python {}' \;
  • python -m cProfile 2022/01.py
  • time python 2022/01.py2022.md
  • hyperfine --warmup 3 -r 10 'find 2022 -type f -regex ".*/[0-9]*\.py" | sort -n | xargs -L 1 python ' | tee 2022/benchmark-m1.txt
  • bin/run-all-solutions.py --dir 2022 --write
Day Name Solution CI Benchmark
01 Calorie Counting py badge
02 Rock Paper Scissors py badge
03 Rucksack Reorganization py badge
04 Camp Cleanup py badge
05 Supply Stacks py badge
06 Tuning Trouble py badge
07 No Space Left On Device py badge
08 Treetop Tree House py badge
09 Rope Bridge py badge
--- ------ --------- ---
all AoC 22 txt badge
  • or ** - external solution adopted