Skip to content

Commit 453f713

Browse files
committed
Merge branch 'main' of https://github.com/chetannada/leetcode into ltc-2485-js
2 parents 4a199b1 + 127c9c3 commit 453f713

8 files changed

+147
-17
lines changed

README.md

+5-5
Large diffs are not rendered by default.

c/0010-regular-expression-matching.c

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
bool isMatch(char *s, char *p) {
2+
int m = strlen(s);
3+
int n = strlen(p);
4+
5+
bool dp[m + 1][n + 1];
6+
memset(dp, false, sizeof(dp));
7+
dp[0][0] = true;
8+
9+
for (int j = 1; j <= n; j++) {
10+
if (p[j - 1] == '*') {
11+
dp[0][j] = dp[0][j - 2];
12+
}
13+
}
14+
15+
for (int i = 1; i <= m; i++) {
16+
for (int j = 1; j <= n; j++) {
17+
if (p[j - 1] == s[i - 1] || p[j - 1] == '.') {
18+
dp[i][j] = dp[i - 1][j - 1];
19+
} else if (p[j - 1] == '*') {
20+
dp[i][j] = dp[i][j - 2] || ((s[i - 1] == p[j - 2] || p[j - 2] == '.') && dp[i - 1][j]);
21+
}
22+
}
23+
}
24+
25+
return dp[m][n];
26+
}

c/0312-burst-balloons.c

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
int max(int a, int b) {
2+
return (a > b) ? a : b;
3+
}
4+
5+
int maxCoins(int* nums, int numsSize) {
6+
// Add padding of 1 to both ends of the array
7+
int n = numsSize + 2;
8+
int paddedNums[n];
9+
paddedNums[0] = paddedNums[n - 1] = 1;
10+
for (int i = 1; i < n - 1; i++) {
11+
paddedNums[i] = nums[i - 1];
12+
}
13+
14+
// Create a 2D DP array to store the results
15+
int dp[n][n];
16+
memset(dp, 0, sizeof(dp));
17+
18+
// Start dynamic programming process
19+
for (int len = 2; len < n; len++) {
20+
for (int left = 0; left < n - len; left++) {
21+
int right = left + len;
22+
for (int k = left + 1; k < right; k++) {
23+
dp[left][right] = max(dp[left][right],
24+
paddedNums[left] * paddedNums[k] * paddedNums[right] + dp[left][k] + dp[k][right]);
25+
}
26+
}
27+
}
28+
29+
return dp[0][n - 1];
30+
}

cpp/0021-merge-two-sorted-lists.cpp

+3-11
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,8 @@ class Solution {
3131
return list1;
3232
}
3333

34-
ListNode* head = NULL;
35-
if (list1->val <= list2->val) {
36-
head = list1;
37-
list1 = list1->next;
38-
} else {
39-
head = list2;
40-
list2 = list2->next;
41-
}
42-
ListNode* curr = head;
43-
34+
ListNode* dummy = new ListNode();
35+
ListNode *curr = dummy;
4436
while (list1 != NULL && list2 != NULL) {
4537
if (list1->val <= list2->val) {
4638
curr->next = list1;
@@ -58,6 +50,6 @@ class Solution {
5850
curr->next = list1;
5951
}
6052

61-
return head;
53+
return dummy->next;
6254
}
6355
};

cpp/0149-max-points-on-a-line.cpp

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
class Solution {
2+
public:
3+
int maxPoints(vector<vector<int>>& points) {
4+
int res = 1;
5+
for (int i=0; i<points.size(); ++i) {
6+
unordered_map<float, int> count;
7+
for (int j=i+1; j<points.size(); ++j) {
8+
float s = slope(points[i], points[j]);
9+
count[s] ++;
10+
res = max(res, count[s] + 1);
11+
}
12+
}
13+
return res;
14+
}
15+
private:
16+
float slope(vector<int>& p1, vector<int>& p2) {
17+
if ((p2[0] - p1[0]) == 0)
18+
return INT_MAX; // aka edge case to handle a slope of infinity
19+
return (float) (p2[1] - p1[1]) / (float) (p2[0] - p1[0]);
20+
}
21+
};
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/**
2+
* Definition for singly-linked list.
3+
* type ListNode struct {
4+
* Val int
5+
* Next *ListNode
6+
* }
7+
*/
8+
func swapNodes(head *ListNode, k int) *ListNode {
9+
curr := head
10+
for i := 0; i < k-1; i++ {
11+
curr = curr.Next
12+
}
13+
14+
left := curr
15+
right := head
16+
17+
for curr.Next != nil {
18+
curr = curr.Next
19+
right = right.Next
20+
}
21+
22+
left.Val, right.Val = right.Val, left.Val
23+
24+
return head
25+
}
26+
//Time: O(n)
27+
//Space: O(1)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
class Solution {
2+
public boolean canShip(int cap, int days, int[] weights){
3+
int ships=1, currCap=cap;
4+
for(int w: weights){
5+
if(currCap - w < 0){
6+
ships += 1;
7+
currCap = cap;
8+
}
9+
currCap -= w;
10+
}
11+
return ships <= days;
12+
}
13+
public int shipWithinDays(int[] weights, int days) {
14+
int l=0, r=0;
15+
16+
for(int w: weights){
17+
l = Math.max(l, w);
18+
r += w;
19+
}
20+
21+
int res = r;
22+
23+
while(l <= r){
24+
int cap = (l+r)/2;
25+
if(canShip(cap, days, weights)){
26+
res = Math.min(res, cap);
27+
r = cap-1;
28+
}else{
29+
l = cap+1;
30+
}
31+
}
32+
return res;
33+
}
34+
}

python/0128-longest-consecutive-sequence.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ def longestConsecutive(self, nums: List[int]) -> int:
33
numSet = set(nums)
44
longest = 0
55

6-
for n in nums:
6+
for n in numSet:
77
# check if its the start of a sequence
88
if (n - 1) not in numSet:
99
length = 1

0 commit comments

Comments
 (0)