Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/square.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# return the squared value
def square(x):
pass
return x * x
9 changes: 8 additions & 1 deletion src/whereToEat.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
#given input 'north', 'west', or 'central', return 'RPCC', 'Keeton', and 'anywhere but Okenshields' respectively
def where_to_eat(location):
pass
if location == "north":
return "RPCC"
elif location == "west":
return "Keeton"
elif location == "central":
return "anywhere but Okenshields"
else:
return