From fdf7ce872cd243578a8d4936673e54125db91af2 Mon Sep 17 00:00:00 2001 From: wieerwill Date: Mon, 4 Dec 2023 09:09:14 +0100 Subject: [PATCH] rename to name convention --- Day01/python/{part1.py => solution1.py} | 0 Day01/python/{part2.py => solution2.py} | 0 README.md | 8 ++++++-- 3 files changed, 6 insertions(+), 2 deletions(-) rename Day01/python/{part1.py => solution1.py} (100%) rename Day01/python/{part2.py => solution2.py} (100%) diff --git a/Day01/python/part1.py b/Day01/python/solution1.py similarity index 100% rename from Day01/python/part1.py rename to Day01/python/solution1.py diff --git a/Day01/python/part2.py b/Day01/python/solution2.py similarity index 100% rename from Day01/python/part2.py rename to Day01/python/solution2.py diff --git a/README.md b/README.md index e309e62..4fda974 100644 --- a/README.md +++ b/README.md @@ -66,8 +66,8 @@ For example: ```bash cd Day01/python -python3 part2.py test.txt # for testing (not all Days will have that) -python3 part2.py +python3 solution2.py +python3 solution2.py ``` Make sure you have Python installed on your machine. The solutions are developed using Python 3.x. @@ -105,6 +105,10 @@ cd Day01/ts ts-node solution.ts ``` +--- + +The first part (less complex) is only solved in Python. Therefore the python folder has always two scripts (solution1.py and solution2.py) to solve both parts. All other languages are only implementing the second part. + ## Feedback and Collaboration I'm always open to feedback and suggestions for improving the solutions. If you have ideas or find an issue, feel free to open an issue or submit a pull request.