11 lines
344 B
Python
11 lines
344 B
Python
######################################
|
|
# DCS 229 -- TurtleDFS
|
|
# Depth-First Search implementation for Turtle Maze
|
|
# Date: 03/29/2026
|
|
# Name: Benjamin Adovasio
|
|
# Resources Used: I worked with Pat Cohen on the project.
|
|
##########################################
|
|
|
|
import os
|
|
from Stack import Stack
|
|
from TurtleMaze import TurtleMaze, Cell, Contents |