Skip to content

Commit

Permalink
Update find-the-duplicate-number.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kamyu104 committed Sep 28, 2015
1 parent 3995aa0 commit 62978e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Python/find-the-duplicate-number.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
# find the duplicate one.
#
# Note:
# You must not modify the array (assume the array is read only).
# You must use only constant extra space.
# Your runtime complexity should be less than O(n2).
# - You must not modify the array (assume the array is read only).
# - You must use only constant extra space.
# - Your runtime complexity should be less than O(n^2).
#

# Two pointers method, same as Linked List Cycle II.
Expand Down

0 comments on commit 62978e3

Please sign in to comment.