Skip to content

Commit 613a5b8

Browse files
committed
update site data
1 parent 212248d commit 613a5b8

9 files changed

+6675
-6395
lines changed

.problemSiteData.json

+6,624-6,250
Large diffs are not rendered by default.

cpp/0026-remove-duplicates-from-sorted-array.c

-12
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
1-
class Solution {
2-
public:
3-
int removeDuplicates(vector<int>& nums) {
4-
int left = 1;
5-
6-
for(int right = 1; right < nums.size(); right++){
7-
if(nums[right] != nums[right - 1]){
8-
nums[left] = nums[right];
9-
left++;
10-
}
1+
int removeDuplicates(int* nums, int numsSize){
2+
int indx = 1;
3+
4+
for(int i = 1; i < numsSize; i++){
5+
if(nums[i] != nums[i-1]){
6+
nums[indx] = nums[i];
7+
indx++;
118
}
12-
13-
return left;
149
}
15-
};
10+
return indx;
11+
}
12+

cpp/0069-sqrt(x).cpp

-37
This file was deleted.

cpp/0069-sqrtx.cpp

+32-17
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,37 @@
1+
/*
2+
Given a non-negative integer x, return the square root of x rounded down to the nearest integer. The returned integer should be non-negative as well.
3+
You must not use any built-in exponent function or operator.
4+
5+
For example, do not use pow(x, 0.5) in c++ or x ** 0.5 in python.
6+
7+
Ex. Input: x = 4
8+
Output: 2
9+
Explanation: The square root of 4 is 2, so we return 2.
10+
11+
Time : O(log N)
12+
Space : O(1)
13+
*/
14+
115
class Solution {
216
public:
317
int mySqrt(int x) {
4-
5-
int l = 0;
6-
int r = x;
7-
8-
while(l <= r){
9-
long int m = (l + r) / 2;
10-
if(m * m == x){
11-
return m;
12-
}
13-
else if(m * m > x){
14-
r = m - 1;
15-
}
16-
else{
17-
l = m + 1;
18-
}
18+
if(x == 0 || x == 1)
19+
return x;
20+
21+
long long beg = 0, mid = 0, end = x/2;
22+
while(beg <= end) {
23+
mid = (beg + end)/2;
24+
if(mid * mid < x) {
25+
if((mid + 1) * (mid + 1) > x)
26+
return mid;
27+
beg = mid+1;
28+
} else if(mid * mid > x) {
29+
if( (mid - 1) * (mid - 1) < x)
30+
return mid-1;
31+
end = mid - 1;
32+
} else
33+
return mid;
1934
}
20-
return r;
35+
return mid;
2136
}
22-
};
37+
};

java/0705-desgin-hashset.java

-18
This file was deleted.

java/0705-design-hashset.java

+9-48
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,18 @@
11
class MyHashSet {
2-
final int mod = 10000;
3-
ListNode[] set;
4-
5-
class ListNode {
6-
int val;
7-
ListNode next;
8-
private ListNode(int val) {
9-
this.val = val;
10-
this.next = null;
11-
}
12-
}
13-
2+
boolean [] setArray;
143
public MyHashSet() {
15-
this.set = new ListNode[mod];
16-
for (int i = 0; i < set.length; i++) {
17-
set[i] = new ListNode(0);
18-
}
4+
setArray=new boolean[(int)1e6+1];
195
}
20-
6+
217
public void add(int key) {
22-
ListNode head = set[key % mod];
23-
while (head.next != null) {
24-
if (head.next.val == key) return;
25-
head = head.next;
26-
}
27-
head.next = new ListNode(key);
8+
setArray[key]=true;
289
}
29-
10+
3011
public void remove(int key) {
31-
ListNode head = set[key % mod];
32-
while (head.next != null) {
33-
if (head.next.val == key) {
34-
head.next = head.next.next;
35-
return;
36-
}
37-
head = head.next;
38-
}
12+
setArray[key]=false;
3913
}
40-
14+
4115
public boolean contains(int key) {
42-
ListNode head = set[key % mod];
43-
while (head.next != null) {
44-
if (head.next.val == key) return true;
45-
head = head.next;
46-
}
47-
return false;
16+
return setArray[key];
4817
}
49-
}
50-
51-
/**
52-
* Your MyHashSet object will be instantiated and called as such:
53-
* MyHashSet obj = new MyHashSet();
54-
* obj.add(key);
55-
* obj.remove(key);
56-
* boolean param_3 = obj.contains(key);
57-
*/
18+
}

0 commit comments

Comments
 (0)