aboutsummaryrefslogtreecommitdiffstats
path: root/csci1913/Python/lab3_strap012.py
diff options
context:
space:
mode:
authorMatthew Strapp <msattr@gmail.com>2019-09-25 14:49:32 -0500
committerMatthew Strapp <msattr@gmail.com>2019-09-25 14:49:32 -0500
commitf8e664bd08e484d10be8deccb17edb4924afd8a9 (patch)
tree00c7068b13cd08564746581af537145cf87f50df /csci1913/Python/lab3_strap012.py
parentStart Lab (diff)
downloadhomework-f8e664bd08e484d10be8deccb17edb4924afd8a9.tar
homework-f8e664bd08e484d10be8deccb17edb4924afd8a9.tar.gz
homework-f8e664bd08e484d10be8deccb17edb4924afd8a9.tar.bz2
homework-f8e664bd08e484d10be8deccb17edb4924afd8a9.tar.lz
homework-f8e664bd08e484d10be8deccb17edb4924afd8a9.tar.xz
homework-f8e664bd08e484d10be8deccb17edb4924afd8a9.tar.zst
homework-f8e664bd08e484d10be8deccb17edb4924afd8a9.zip
Get rid of space
Diffstat (limited to 'csci1913/Python/lab3_strap012.py')
-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