Skip to content

Commit 54ed006

Browse files
Merge branch 'master' into dependabot/npm_and_yarn/split2-4.2.0
2 parents fcd8765 + d0d7945 commit 54ed006

File tree

8 files changed

+2223
-815
lines changed

8 files changed

+2223
-815
lines changed

2020/day-01/expenseValidation.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
/**
32
* Validates a list of records by comparing every combination
43
* to the checksum. Stops when the first match is found

2020/day-11/seating.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
const parse = (data) => {
32
return data.split('\n').map((row) => {
43
return row.split('')

2021/day-06/fish.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
let _fishes = []
32
const NewFishAge = 8 // age of newly spawned fish
43
const FishSpawnAge = 0 // age when the fish spawns

2021/day-10/scoring.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
const findMiddleScore = (scores) => {
32
// According to specs, there's always an odd number of items in the list,
43
// so we're safe to divide by 2 and round down to get the desired index

2022/day-02/rochambeau.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
// Lookup tables for possible rock / paper / scissor values
32
const selfCodes = ['X', 'Y', 'Z']
43
const opponentCodes = ['A', 'B', 'C']

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
## Status
66

77
### 2022
8-
![](https://img.shields.io/badge/day%20📅-25-blue)
9-
![](https://img.shields.io/badge/stars%20⭐-4-yellow)
10-
![](https://img.shields.io/badge/days%20completed-2-red)
8+
![](https://img.shields.io/badge/day%20📅-1-blue)
9+
![](https://img.shields.io/badge/stars%20⭐-0-yellow)
10+
![](https://img.shields.io/badge/days%20completed-0-red)
1111

1212
## Run the currently configured default day
1313
`npm start`

0 commit comments

Comments
 (0)