From 2986a18e17fb6dcdf3c246fa137562e7d2c7da07 Mon Sep 17 00:00:00 2001 From: Eric Wagoner Date: Mon, 1 Dec 2025 10:28:51 -0500 Subject: [PATCH] Remove inputs from repo --- .gitignore | 5 ++++- day-template/{input.txt => input.txt.template} | 0 day-template/{sample.txt => sample.txt.template} | 0 3 files changed, 4 insertions(+), 1 deletion(-) rename day-template/{input.txt => input.txt.template} (100%) rename day-template/{sample.txt => sample.txt.template} (100%) diff --git a/.gitignore b/.gitignore index ceaea36..d7a818e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +# Advent of Code input files +input.txt +sample.txt + # ---> Node # Logs logs @@ -129,4 +133,3 @@ dist .yarn/build-state.yml .yarn/install-state.gz .pnp.* - diff --git a/day-template/input.txt b/day-template/input.txt.template similarity index 100% rename from day-template/input.txt rename to day-template/input.txt.template diff --git a/day-template/sample.txt b/day-template/sample.txt.template similarity index 100% rename from day-template/sample.txt rename to day-template/sample.txt.template