forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_136.java
40 lines (32 loc) · 1.32 KB
/
_136.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
package com.fishercoder.solutions;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
/**136. Single Number
Given an array of integers, every element appears twice except for one. Find that single one.
Note:
Your algorithm should have a linear runtime complexity. Could you implement it without using extra memory?
*/
public class _136 {
//approach 1: use set, since this problem explicitly states that every element appears twice and only one appears once
//so, we could safely remove the ones that are already in the set, O(n) time and O(n) space.
//HashTable approach works similarly like this one, but it could be more easily extend to follow-up questions.
public int singleNumber_using_set(int[] nums) {
Set<Integer> set = new HashSet();
for(int i : nums){
if(!set.add(i)) set.remove(i);
}
Iterator<Integer> it = set.iterator();
return it.next();
}
//approach 2: bit manipulation, use exclusive or ^ to solve this problem:
//we're using the trick here: every number ^ itself will become zero, so, the only remaining element will be the one that
//appeared only once.
public int singleNumber_using_bit(int[] nums) {
int res = 0;
for(int i : nums){
res ^= i;
}
return res;
}
}