forked from KnowledgeCenterYoutube/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path287_Find_duplicate_number
66 lines (59 loc) · 1.54 KB
/
287_Find_duplicate_number
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Leetcode 287: Find the Duplicate Number
// Detailed Explanation is available here: https://youtu.be/GOYMcrvg-Ck
// C++
class Solution {
public:
int findDuplicate(vector<int>& nums) {
int n = nums.size();
int idx = 0;
int curr_max = 0;
for(int i = 0; i < n; ++i){
int id = nums[i] % n;
nums[id] += n;
}
for(int i = 0; i < n; ++i){
if(nums[i] > curr_max){
curr_max = nums[i];
idx = i;
}
nums[i] %= n;
}
return idx;
}
};
// Java:
class Solution {
public int findDuplicate(int[] nums) {
int n = nums.length;
int idx = 0;
int curr_max = 0;
for(int i = 0; i < n; ++i){
int id = nums[i] % n;
nums[id] += n;
}
for(int i = 0; i < n; ++i){
if(nums[i] > curr_max){
curr_max = nums[i];
idx = i;
}
nums[i] %= n;
}
return idx;
}
}
# Python3:
class Solution:
def findDuplicate(self, nums: List[int]) -> int:
n = len(nums)
idx = 0
curr_max = 0
for i in range(n):
id = nums[i] % n
nums[id] += n
for i in range(n):
if nums[i] > curr_max:
curr_max = nums[i]
idx = i
nums[i] %= n
return idx
***** Please LIKE, SHARE and SUBSCRIBE Knowledge Center channel: https://www.youtube.com/c/KnowledgeCenter ******