-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
22 lines (19 loc) · 834 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using AdventOfCode.Core;
namespace AdventOfCode {
public class Program {
public static void Main(string[] args) {
//Synacor Challenge
//Synacor.Emulator.RunChallenge();
//Run code for all years and days
//Runner.AdventYear();
//Run code for a specific year
//Runner.AdventYear(2023);
//Run code for a specific day in the year
//Class is auto generated if it doesn't exist and
//will auto download description and input if current date > specified and they don't exist
//or within 30 minutes of the problem start (and will wait till midnight EST)
//Problem description will be brought up in the default browser if it was pulled
Runner.AdventYear(2024, 1);
}
}
}