Skip to content

Commit ec2984f

Browse files
committed
Fix a typo for 165.
1 parent bab8a47 commit ec2984f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

165 Compare Version Numbers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ def compareVersion(self, version1, version2):
3333
if __name__ == "__main__":
3434
assert Solution().compareVersion("0.1", "1.1") == -1
3535
assert Solution().compareVersion("01.2", "1.1") == 1
36-
assert Solution().compareVersion("2.3", "2.3") == 3
36+
assert Solution().compareVersion("2.3", "2.3") == 0

0 commit comments

Comments
 (0)