Skip to content

Commit 94e640b

Browse files
authored
Merge pull request #405 from mspatel927/patch-2
mspatel927_Greater_Than.py
2 parents 6cff86b + aed269e commit 94e640b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

python/mspatel927_Greater_Than.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Returns a positive number if x is > y, 0 if they are equal, or a negative number if x is < y
2+
def greaterThan(x, y):
3+
return (x-y)

0 commit comments

Comments
 (0)