You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ If you haven't already, use the button shown below (or [this link](https://githu
25
25
26
26
Feel free to make any modifications you want. However, you probably do not want to remove any files outside of `AdventOfCode/Solutions/` unless you know what you're doing.
27
27
28
-
If any solutions files that you need are not already included, see **[Generating Previous Year's Solution Files](#generating-previous-years-solution-files)**.
28
+
If any solution files that you need are not already included, see **[Generating Previous Year's Solution Files](#generating-previous-years-solution-files)**.
29
29
30
30
## Usage
31
31
### Requirements
@@ -43,14 +43,16 @@ Create `config.json` with the following key/value pairs. If you run the program
43
43
44
44
`cookie` - Note that `c0nt3nt` must be replaced with a valid cookie value that your browser stores when logging in at adventofcode.com. Instructions on locating your session cookie can be found here: https://github.com/wimglenn/advent-of-code-wim/issues/1
45
45
46
-
`year` - Specifies which year you wish to output solutions for when running the project. If left unspecified will default to the current year.
46
+
`year` - Specifies which year you wish to output solutions for when running the project. Defaults to the current year if left unspecified.
47
47
48
-
`days` - Specifies which days you wish to output solutions for when running the project. The field supports list comprehension syntax and strings, meaning the following notations are valid.
48
+
`days` - Specifies which days you wish to output solutions for when running the project. Defaults to current day if left unspecified and an event is actively running, otherwise defaults to `0`.
49
+
50
+
The field supports list comprehension syntax and strings, meaning the following notations are valid.
49
51
*`"1..4, 10"` - runs day 1, 2, 3, 4, and 10.
50
52
*`[1, 3, "5..9", 15]` - runs day 1, 3, 5, 6, 7, 8, 9, and 15.
51
53
*`0` - runs all days
52
54
53
-
Will default to current day if left unspecified and an event is actively running. Otherwise will default to `0`
55
+
54
56
55
57
### Running the project
56
58
Write your code solutions to advent of code within the appropriate day classes in the Solutions folder, and run the project. From the command line you may do as follows.
0 commit comments