generated from caiangums/aoc-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
57 lines (55 loc) · 1.2 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import solve00 from './00'
import solve01 from './01'
import solve02 from './02'
import solve03 from './03'
import solve04 from './04'
import solve05 from './05'
import solve06 from './06'
import solve07 from './07'
import solve08 from './08'
import solve09 from './09'
import solve10 from './10'
import solve11 from './11'
import solve12 from './12'
import solve13 from './13'
import solve14 from './14'
import solve15 from './15'
import solve16 from './16'
import solve17 from './17'
import solve18 from './18'
import solve19 from './19'
import solve20 from './20'
import solve21 from './21'
import solve22 from './22'
import solve23 from './23'
import solve24 from './24'
import solve25 from './25'
const solveAll = async () => {
await solve00()
await solve01()
await solve02()
await solve03()
await solve04()
await solve05()
await solve06()
await solve07()
await solve08()
await solve09()
await solve10()
await solve11()
await solve12()
await solve13()
await solve14()
await solve15()
await solve16()
await solve17()
await solve18()
await solve19()
await solve20()
await solve21()
await solve22()
await solve23()
await solve24()
await solve25()
}
export default solveAll