Hi there!
I went back to adjust an already submitted certification project after realising I’d forgotten to add in “print” statements so that my output would make sense (despite them not being there, the project gave me a pass anyway?)
But now when I check the certification project in my profile, the popup for it is just… gibberish. I don’t know if it’s because I had copy/pasted my answer from my Thonny editor (I usually copy/paste to there so I can keep copies on hand)?
This is the code I wanted to fix:
print("Tower of Hanoi Solution for 2 Disks")
print("=============")
print(hanoi_solver(2))
print("=============")
print("")
print("Tower of Hanoi Solution for 3 Disks")
print("=============")
hanoi_solver(3)
print("=============")
print("")
print("Tower of Hanoi Solution for 4 Disks")
print("=============")
hanoi_solver(4)
print("=============")
print("")
print("Tower of Hanoi Solution for 5 Disks")
print("=============")
hanoi_solver(5)
print("=============")
print("")
I had originally forgotten to add “print(hanoi_solver(n)” on 3 through 5. Idk if the tests just ran the tests through the one marked “print(hanoi_solver(2))”. But still, I only realized after submitting that my output was nonsense, hence wanting to fix it.
(I’m aware I’m probably not making much sense right now, but I hope this is semi-intelligible anyway. xD;)
Thank you for your time!
