Skip to content

Commit aa9137f

Browse files
committed
Inits 2020 Day 8
1 parent a52ac37 commit aa9137f

File tree

5 files changed

+23
-0
lines changed

5 files changed

+23
-0
lines changed

2020/8/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Answers
2+
3+
| Part 1 | Part 2 |
4+
| ------ | ------ |
5+
| ` ` | ` ` |

2020/8/input.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
const path = require('path');
2+
const fs = require('fs');
3+
4+
const input = fs
5+
.readFileSync(path.join(__dirname, 'input.txt'), 'utf8')
6+
.toString()
7+
.trim()
8+
.split('\n');
9+
10+
module.exports = {
11+
input,
12+
};

2020/8/input.txt

Whitespace-only changes.

2020/8/part-one.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
const { input } = require('./input');
2+
3+
console.log( );

2020/8/part-two.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
const { input } = require('./input');
2+
3+
console.log( );

0 commit comments

Comments
 (0)