From ab06e10df8893f1b2990212eb760ebbc4e965e06 Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Tue, 19 Nov 2024 17:29:50 +0100 Subject: [PATCH] chore: update benchmarks --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 5784a13..3e2cc9b 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,19 @@ Solutions for [Advent of Code](https://adventofcode.com/) in [Rust](https://www. + +## Benchmarks + +| Day | Part 1 | Part 2 | +| :---: | :---: | :---: | +| [Day 1](./src/bin/01.rs) | `4.5µs` | `90.5µs` | +| [Day 2](./src/bin/02.rs) | `61.8µs` | `57.1µs` | +| [Day 3](./src/bin/03.rs) | `290.0µs` | `373.0µs` | +| [Day 4](./src/bin/04.rs) | `152.1ms` | `242.8ms` | +| [Day 5](./src/bin/05.rs) | `5.1s` | `11.7s` | +| [Day 6](./src/bin/06.rs) | `384.1µs` | `396.5µs` | + +**Total: 17196.56ms** ---