-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dan Alin
committed
Dec 3, 2024
1 parent
2d3ddba
commit bf6d34c
Showing
6 changed files
with
16 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Advent of Code 2020 | ||
|
||
This repository contains my solutions for the [Advent of Code 2020](https://adventofcode.com/2024) challenge. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
benchmarks fastest │ slowest │ median │ mean │ samples │ iters | ||
├─ day_01_part_one 70.2 µs │ 114.5 µs │ 70.37 µs │ 71.58 µs │ 100 │ 100 | ||
├─ day_01_part_two 86.95 µs │ 146.2 µs │ 94.6 µs │ 95.73 µs │ 100 │ 100 | ||
├─ day_02_part_one 125.6 µs │ 212 µs │ 131.9 µs │ 133.2 µs │ 100 │ 100 | ||
╰─ day_02_part_two 164.3 µs │ 222.2 µs │ 168.7 µs │ 171.6 µs │ 100 │ 100 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
mkdir -p benchmarks | ||
cargo bench | grep -A 100 'benchmarks' > benchmarks/output.txt |