Skip to content

Commit ef5360d

Browse files
committed
Rename
1 parent 67c1270 commit ef5360d

28 files changed

+26
-26
lines changed

.github/workflows/cmake.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ jobs:
4343
shell: bash
4444
# Execute the build. You can specify a specific target with "--target <NAME>"
4545
run: |
46-
./day1-twentytwenty $GITHUB_WORKSPACE/day1/input
47-
./day2-password-philosophy $GITHUB_WORKSPACE/day2/input
48-
./day3-toboggan-trajectory $GITHUB_WORKSPACE/day3/input
49-
./day4-passport-processing $GITHUB_WORKSPACE/day4/input
50-
./day5-binary-boarding $GITHUB_WORKSPACE/day5/input
51-
./day6-custom-customs $GITHUB_WORKSPACE/day6/input
52-
./day7-handy-haversacks $GITHUB_WORKSPACE/day7/input
53-
./day8-handheld-halting $GITHUB_WORKSPACE/day8/input
54-
./day9-encoding-error $GITHUB_WORKSPACE/day9/input 25
46+
./day01-twentytwenty $GITHUB_WORKSPACE/day1/input
47+
./day02-password-philosophy $GITHUB_WORKSPACE/day2/input
48+
./day03-toboggan-trajectory $GITHUB_WORKSPACE/day3/input
49+
./day04-passport-processing $GITHUB_WORKSPACE/day4/input
50+
./day05-binary-boarding $GITHUB_WORKSPACE/day05/input
51+
./day06-custom-customs $GITHUB_WORKSPACE/day6/input
52+
./day07-handy-haversacks $GITHUB_WORKSPACE/day7/input
53+
./day08-handheld-halting $GITHUB_WORKSPACE/day8/input
54+
./day09-encoding-error $GITHUB_WORKSPACE/day9/input 25
5555
./day10-adapter-array $GITHUB_WORKSPACE/day10/input
5656
5757
- name: Test

CMakeLists.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ set(CMAKE_CXX_STANDARD 20)
55

66
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
77

8-
add_executable(day1-twentytwenty day1/twentytwenty.cpp)
9-
add_executable(day2-password-philosophy day2/password-philosophy.cpp)
10-
add_executable(day3-toboggan-trajectory day3/toboggan-trajectory.cpp)
11-
add_executable(day4-passport-processing day4/passport-processing.cpp)
12-
add_executable(day5-binary-boarding day5/binary-boarding.cpp)
13-
add_executable(day6-custom-customs day6/custom-customs.cpp)
14-
add_executable(day7-handy-haversacks day7/handy-haversacks.cpp)
15-
add_executable(day8-handheld-halting day8/handheld-halting.cpp)
16-
add_executable(day9-encoding-error day9/encoding-error.cpp)
8+
add_executable(day01-twentytwenty day01/twentytwenty.cpp)
9+
add_executable(day02-password-philosophy day02/password-philosophy.cpp)
10+
add_executable(day03-toboggan-trajectory day03/toboggan-trajectory.cpp)
11+
add_executable(day04-passport-processing day04/passport-processing.cpp)
12+
add_executable(day05-binary-boarding day05/binary-boarding.cpp)
13+
add_executable(day06-custom-customs day06/custom-customs.cpp)
14+
add_executable(day07-handy-haversacks day07/handy-haversacks.cpp)
15+
add_executable(day08-handheld-halting day08/handheld-halting.cpp)
16+
add_executable(day09-encoding-error day09/encoding-error.cpp)
1717
add_executable(day10-adapter-array day10/adapter-array.cpp)

day1/input renamed to day01/input

File renamed without changes.
File renamed without changes.

day2/input renamed to day02/input

File renamed without changes.
File renamed without changes.

day3/input renamed to day03/input

File renamed without changes.
File renamed without changes.

day4/input renamed to day04/input

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

day5/input renamed to day05/input

File renamed without changes.
File renamed without changes.

day6/custom-customs.cpp renamed to day06/custom-customs.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#include <numeric>
33
#include <set>
44

5-
#include "day5/arg_input.hpp"
6-
#include "day5/tokenize.hpp"
5+
#include "day05/arg_input.hpp"
6+
#include "day05/tokenize.hpp"
77

88
namespace ranges = std::ranges;
99

File renamed without changes.

day6/input renamed to day06/input

File renamed without changes.
File renamed without changes.
File renamed without changes.

day7/handy-haversacks.cpp renamed to day07/handy-haversacks.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
#include <set>
55
#include <numeric>
66

7-
#include "day5/arg_input.hpp"
8-
#include "day5/tokenize.hpp"
7+
#include "day05/arg_input.hpp"
8+
#include "day05/tokenize.hpp"
99

1010
namespace ranges = std::ranges;
1111

day7/input renamed to day07/input

File renamed without changes.

day8/handheld-halting.cpp renamed to day08/handheld-halting.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "handheld.hpp"
22

3-
#include "day5/arg_input.hpp"
4-
#include "day5/tokenize.hpp"
3+
#include "day05/arg_input.hpp"
4+
#include "day05/tokenize.hpp"
55

66
auto main(int argc, char* argv[]) -> int {
77
using namespace handheld;
File renamed without changes.

day8/input renamed to day08/input

File renamed without changes.

day9/encoding-error.cpp renamed to day09/encoding-error.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include <numeric>
66
#include <span>
77

8-
#include "day5/arg_input.hpp"
8+
#include "day05/arg_input.hpp"
99

1010
namespace ranges = std::ranges;
1111

File renamed without changes.

day9/input renamed to day09/input

File renamed without changes.

day10/adapter-array.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "day5/arg_input.hpp"
1+
#include "day05/arg_input.hpp"
22

33
#include <algorithm>
44
#include <numeric>

0 commit comments

Comments
 (0)