-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathFindDuplicate.java
42 lines (38 loc) · 1.13 KB
/
FindDuplicate.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*https://leetcode.com/problems/find-the-duplicate-number/*/
class Solution {
public int findDuplicate(int[] nums) {
/*
logic is - if nums[0] = 5, make nums[5] *= -1, if some index is negative already
that means the value is already visited and it is repeated
*/
for (int i = 0; i < nums.length; ++i)
{
int index = Math.abs(nums[i]);
//if the value is negative, that means it is already visited
if (nums[index] < 0)
return index;
//multiply the value with -1
nums[index] *= -1;
}
return -1;
}
}
class Solution {
public int findDuplicate(int[] nums) {
int tortoise = nums[0], hare = nums[0];
int n = nums.length, i;
while (true)
{
tortoise = nums[tortoise];
hare = nums[nums[hare]];
if (tortoise == hare) break;
}
tortoise = nums[0];
while (tortoise != hare)
{
tortoise = nums[tortoise];
hare = nums[hare];
}
return tortoise;
}
}