Skip to content

Commit

Permalink
chore: ran benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexAegis committed Dec 7, 2023
1 parent d2c8bc2 commit da959d9
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion solutions/typescript/2023/07/src/p1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ export const p1 = (input: string): number =>
.map((hand, index) => hand.bid * (index + 1))
.sum();

await task(p1, packageJson.aoc); // 253954294 ~40μs
await task(p1, packageJson.aoc); // 253954294 ~8.70ms
2 changes: 1 addition & 1 deletion solutions/typescript/2023/07/src/p2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,4 @@ export const p2 = (input: string): number =>
.map((hand, index) => hand.bid * (index + 1))
.sum();

await task(p2, packageJson.aoc); // 254837398 ~40μs
await task(p2, packageJson.aoc); // 254837398 ~20.46ms
54 changes: 27 additions & 27 deletions solutions/typescript/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,33 @@

<!-- markdownlint-disable MD013 -->

| Day | Part One | Part Two |
| --------------------------------------- | ------------------------------------------------- | ------------------------------------------------- |
| [Day 1](/solutions/typescript/2023/01/) | [0.19ms](/solutions/typescript/2023/01/src/p1.ts) | [1.38ms](/solutions/typescript/2023/01/src/p2.ts) |
| [Day 2](/solutions/typescript/2023/02/) | [0.22ms](/solutions/typescript/2023/02/src/p1.ts) | [0.25ms](/solutions/typescript/2023/02/src/p2.ts) |
| [Day 3](/solutions/typescript/2023/03/) | [1.39ms](/solutions/typescript/2023/03/src/p1.ts) | [3.89ms](/solutions/typescript/2023/03/src/p2.ts) |
| [Day 4](/solutions/typescript/2023/04/) | [4.36ms](/solutions/typescript/2023/04/src/p1.ts) | [4.57ms](/solutions/typescript/2023/04/src/p2.ts) |
| [Day 5](/solutions/typescript/2023/05/) | [?ms](/solutions/typescript/2023/05/src/p1.ts) | [?ms](/solutions/typescript/2023/05/src/p2.ts) |
| [Day 6](/solutions/typescript/2023/06/) | [40μs](/solutions/typescript/2023/06/src/p1.ts) | [7μs](/solutions/typescript/2023/06/src/p2.ts) |
| [Day 7](/solutions/typescript/2023/07/) | [?ms](/solutions/typescript/2023/07/src/p1.ts) | [?ms](/solutions/typescript/2023/07/src/p2.ts) |
| Day 8 | - | - |
| Day 9 | - | - |
| Day 10 | - | - |
| Day 11 | - | - |
| Day 12 | - | - |
| Day 13 | - | - |
| Day 14 | - | - |
| Day 15 | - | - |
| Day 16 | - | - |
| Day 17 | - | - |
| Day 18 | - | - |
| Day 19 | - | - |
| Day 20 | - | - |
| Day 21 | - | - |
| Day 22 | - | - |
| Day 23 | - | - |
| Day 24 | - | - |
| Day 25 | - | - |
| Day | Part One | Part Two |
| --------------------------------------- | ------------------------------------------------- | -------------------------------------------------- |
| [Day 1](/solutions/typescript/2023/01/) | [0.19ms](/solutions/typescript/2023/01/src/p1.ts) | [1.38ms](/solutions/typescript/2023/01/src/p2.ts) |
| [Day 2](/solutions/typescript/2023/02/) | [0.22ms](/solutions/typescript/2023/02/src/p1.ts) | [0.25ms](/solutions/typescript/2023/02/src/p2.ts) |
| [Day 3](/solutions/typescript/2023/03/) | [1.39ms](/solutions/typescript/2023/03/src/p1.ts) | [3.89ms](/solutions/typescript/2023/03/src/p2.ts) |
| [Day 4](/solutions/typescript/2023/04/) | [4.36ms](/solutions/typescript/2023/04/src/p1.ts) | [4.57ms](/solutions/typescript/2023/04/src/p2.ts) |
| [Day 5](/solutions/typescript/2023/05/) | [?ms](/solutions/typescript/2023/05/src/p1.ts) | [?ms](/solutions/typescript/2023/05/src/p2.ts) |
| [Day 6](/solutions/typescript/2023/06/) | [40μs](/solutions/typescript/2023/06/src/p1.ts) | [7μs](/solutions/typescript/2023/06/src/p2.ts) |
| [Day 7](/solutions/typescript/2023/07/) | [8.70ms](/solutions/typescript/2023/07/src/p1.ts) | [20.46ms](/solutions/typescript/2023/07/src/p2.ts) |
| Day 8 | - | - |
| Day 9 | - | - |
| Day 10 | - | - |
| Day 11 | - | - |
| Day 12 | - | - |
| Day 13 | - | - |
| Day 14 | - | - |
| Day 15 | - | - |
| Day 16 | - | - |
| Day 17 | - | - |
| Day 18 | - | - |
| Day 19 | - | - |
| Day 20 | - | - |
| Day 21 | - | - |
| Day 22 | - | - |
| Day 23 | - | - |
| Day 24 | - | - |
| Day 25 | - | - |

<!-- markdownlint-enable MD013 -->

Expand Down

0 comments on commit da959d9

Please sign in to comment.