Skip to content

Commit e083126

Browse files
committed
Day 17
1 parent 861a4b6 commit e083126

File tree

5 files changed

+1786
-17
lines changed

5 files changed

+1786
-17
lines changed

day-14-chocolate-charts/test.js

-4
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ describe('Day 14: Chocolate Charts', () => {
1818
expect(recipes.getScore(test.arg)).to.equal(test.expected);
1919
}).timeout(500000);
2020
});
21-
22-
it.skip('After 293801 recipes, score should be', () => {
23-
expect(recipes.getScore(293801)).to.equal('3147574107');
24-
});
2521
});
2622

2723
describe('Part One - Arrays', () => {

day-15-beverage-bandits/test.js

+1-13
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const fs = require('fs');
33

44
const combat = require('./combat');
55

6-
describe.only('Day 15: Beverage Bandits', () => {
6+
describe('Day 15: Beverage Bandits', () => {
77

88
describe('Part One', () => {
99
it('should calculate combat end state 27730', () => {
@@ -18,18 +18,6 @@ describe.only('Day 15: Beverage Bandits', () => {
1818
expect(combat.game(input, false, 50)).to.equal(27730);
1919
});
2020

21-
it.skip('should calculate combat end state 27730', () => {
22-
const input =
23-
`#######
24-
#..G..#
25-
#...G.#
26-
#.#G#G#
27-
#...#E#
28-
#.....#
29-
#######`;
30-
expect(combat.game(input,false,1)).to.equal(27730);
31-
});
32-
3321
it('should calculate combat end state 36334', () => {
3422
const input =
3523
`#######

0 commit comments

Comments
 (0)