-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
de4ba0c
commit 769236c
Showing
20 changed files
with
106 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
cmake_minimum_required(VERSION 3.29) | ||
|
||
set(YEAR 2018) | ||
|
||
add_subdirectory(day01) | ||
add_subdirectory(day02) | ||
add_subdirectory(day03) | ||
add_subdirectory(day04) | ||
#add_subdirectory(day05) | ||
#add_subdirectory(day06) | ||
#add_subdirectory(day07) | ||
#add_subdirectory(day08) | ||
#add_subdirectory(day09) | ||
#add_subdirectory(day10) | ||
#add_subdirectory(day11) | ||
#add_subdirectory(day12) | ||
#add_subdirectory(day13) | ||
#add_subdirectory(day14) | ||
#add_subdirectory(day15) | ||
#add_subdirectory(day16) | ||
#add_subdirectory(day17) | ||
#add_subdirectory(day18) | ||
#add_subdirectory(day19) | ||
#add_subdirectory(day20) | ||
#add_subdirectory(day21) | ||
#add_subdirectory(day22) | ||
#add_subdirectory(day23) | ||
#add_subdirectory(day24) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
cmake_minimum_required(VERSION 3.27) | ||
|
||
set(YEAR 2018) | ||
set(DAY 01) | ||
|
||
project("${YEAR} Day ${DAY}" LANGUAGES CXX) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
cmake_minimum_required(VERSION 3.27) | ||
|
||
set(YEAR 2018) | ||
set(DAY 02) | ||
|
||
project("${YEAR} Day ${DAY}" LANGUAGES CXX) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
cmake_minimum_required(VERSION 3.27) | ||
|
||
set(YEAR 2018) | ||
set(DAY 03) | ||
|
||
project("${YEAR} Day ${DAY}" LANGUAGES CXX) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
cmake_minimum_required(VERSION 3.27) | ||
|
||
set(YEAR 2018) | ||
set(DAY 04) | ||
|
||
project("${YEAR} Day ${DAY}" LANGUAGES CXX) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
cmake_minimum_required(VERSION 3.29) | ||
|
||
set(YEAR 2021) | ||
|
||
add_subdirectory(day01) | ||
add_subdirectory(day02) | ||
add_subdirectory(day03) | ||
add_subdirectory(day04) | ||
add_subdirectory(day05) | ||
add_subdirectory(day06) | ||
add_subdirectory(day07) | ||
add_subdirectory(day08) | ||
add_subdirectory(day09) | ||
add_subdirectory(day10) | ||
add_subdirectory(day11) | ||
#add_subdirectory(day12) | ||
#add_subdirectory(day13) | ||
#add_subdirectory(day14) | ||
#add_subdirectory(day15) | ||
#add_subdirectory(day16) | ||
#add_subdirectory(day17) | ||
#add_subdirectory(day18) | ||
#add_subdirectory(day19) | ||
#add_subdirectory(day20) | ||
#add_subdirectory(day21) | ||
#add_subdirectory(day22) | ||
#add_subdirectory(day23) | ||
#add_subdirectory(day24) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
cmake_minimum_required(VERSION 3.29) | ||
|
||
set(YEAR 2022) | ||
|
||
add_subdirectory(day1) | ||
add_subdirectory(day2) | ||
add_subdirectory(day3) | ||
add_subdirectory(day4) | ||
add_subdirectory(day5) | ||
add_subdirectory(day6) | ||
add_subdirectory(day7) | ||
add_subdirectory(day8) | ||
add_subdirectory(day9) | ||
add_subdirectory(day10) | ||
add_subdirectory(day11) | ||
add_subdirectory(day12) | ||
add_subdirectory(day13) | ||
add_subdirectory(day14) | ||
add_subdirectory(day15) | ||
#add_subdirectory(day16) | ||
#add_subdirectory(day17) | ||
add_subdirectory(day18) | ||
#add_subdirectory(day19) | ||
#add_subdirectory(day20) | ||
#add_subdirectory(day21) | ||
#add_subdirectory(day22) | ||
#add_subdirectory(day23) | ||
#add_subdirectory(day24) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
cmake_minimum_required(VERSION 3.22) | ||
|
||
set(YEAR 2022) | ||
|
||
set(DAY 1) | ||
|
||
project("${YEAR} Day ${DAY}" LANGUAGES CXX) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
cmake_minimum_required(VERSION 3.27) | ||
|
||
set(YEAR 2024) | ||
|
||
add_subdirectory(day01) | ||
add_subdirectory(day02) | ||
add_subdirectory(day03) | ||
add_subdirectory(day04) | ||
add_subdirectory(day05) | ||
add_subdirectory(day06) | ||
add_subdirectory(day07) | ||
add_subdirectory(day08) | ||
add_subdirectory(day09) | ||
add_subdirectory(day10) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
cmake_minimum_required(VERSION 3.27) | ||
|
||
set(YEAR 2024) | ||
set(DAY 01) | ||
|
||
project("${YEAR} Day ${DAY}" LANGUAGES CXX) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
cmake_minimum_required(VERSION 3.29) | ||
|
||
set(YEAR 2024) | ||
set(DAY 02) | ||
|
||
project( "${YEAR} Day ${DAY}" LANGUAGES CXX) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
cmake_minimum_required(VERSION 3.29) | ||
|
||
set(YEAR 2024) | ||
set(DAY 03) | ||
|
||
project("${YEAR} Day ${DAY}" LANGUAGES CXX) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
cmake_minimum_required(VERSION 3.29) | ||
|
||
set(YEAR 2024) | ||
set(DAY 04) | ||
|
||
project("${YEAR} Day ${DAY}" LANGUAGES CXX) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
cmake_minimum_required(VERSION 3.29) | ||
|
||
set(YEAR 2024) | ||
set(DAY 05) | ||
|
||
project("${YEAR} Day ${DAY}" LANGUAGES CXX) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
cmake_minimum_required(VERSION 3.29) | ||
|
||
set(YEAR 2024) | ||
set(DAY 06) | ||
|
||
project("${YEAR} Day ${DAY}" LANGUAGES CXX) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
cmake_minimum_required(VERSION 3.29) | ||
|
||
set(YEAR 2024) | ||
set(DAY 07) | ||
|
||
project("${YEAR} Day ${DAY}" LANGUAGES CXX) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
cmake_minimum_required(VERSION 3.29) | ||
|
||
set(YEAR 2024) | ||
set(DAY 08) | ||
|
||
project("${YEAR} Day ${DAY}" LANGUAGES CXX) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
cmake_minimum_required(VERSION 3.29) | ||
|
||
set(YEAR 2024) | ||
set(DAY 09) | ||
|
||
project("${YEAR} Day ${DAY}" LANGUAGES CXX) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
cmake_minimum_required(VERSION 3.29) | ||
|
||
set(YEAR 2024) | ||
set(DAY 10) | ||
|
||
project("${YEAR} Day ${DAY}" LANGUAGES CXX) | ||
|