aboutsummaryrefslogtreecommitdiffstats
path: root/csci1913/Python
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--csci1913/Python/lab3_strap012.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/csci1913/Python/lab3_strap012.py b/csci1913/Python/lab3_strap012.py
index ea6bdf0..1e121a6 100644
--- a/csci1913/Python/lab3_strap012.py
+++ b/csci1913/Python/lab3_strap012.py
@@ -11,7 +11,6 @@ def filter(P,S):
return (S[0]) + filter(P,S[1:])
else:
return filter(P,S[1:])
-
def returnGreater(a,b):
if a > b:
return a