From 5f006dbb60975d8d46e1eee7b522d80d4cf1d1bf Mon Sep 17 00:00:00 2001 From: Eclypsed Date: Sat, 13 Sep 2025 20:08:47 -0400 Subject: [PATCH] Backtracking: Canvas lied, Gradescope wanted cs412_rockets.py --- Backtracking/README.md | 3 +++ Backtracking/{cs412_hw3_a.py => cs412_rockets.py} | 0 2 files changed, 3 insertions(+) rename Backtracking/{cs412_hw3_a.py => cs412_rockets.py} (100%) diff --git a/Backtracking/README.md b/Backtracking/README.md index 4c72e82..620ae5f 100644 --- a/Backtracking/README.md +++ b/Backtracking/README.md @@ -106,6 +106,9 @@ rocket sections in the format "N rocket sections minimum". Develop a recursive backtracking solution to the problem. Turn your solution in as `cs412_hw3_a.py` to Gradescope. +> Eclypse's Note: The above is a lie, Gradescope actually wanted the file to be +> named `cs412_rockets.py` as of 20:06 2025-09-13 + ### Rubric: - (10 points) Does the code solve the samples in the write-up? diff --git a/Backtracking/cs412_hw3_a.py b/Backtracking/cs412_rockets.py similarity index 100% rename from Backtracking/cs412_hw3_a.py rename to Backtracking/cs412_rockets.py