Skip to content

Commit 9b8bd34

Browse files
authored
Added tasks 2-5
1 parent 1defcfa commit 9b8bd34

File tree

14 files changed

+430
-0
lines changed

14 files changed

+430
-0
lines changed

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,13 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
7070

7171
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
7272
|-|-|-|-|-|-
73+
| 0005 |[Longest Palindromic Substring](src/main/js/g0001_0100/s0005_longest_palindromic_substring/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Dynamic_Programming, Big_O_Time_O(n)_Space_O(n) | 10 | 99.54
7374

7475
#### Day 10 Linked List
7576

7677
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
7778
|-|-|-|-|-|-
79+
| 0002 |[Add Two Numbers](src/main/js/g0001_0100/s0002_add_two_numbers/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Math, Linked_List, Recursion, Big_O_Time_O(max(N,M))_Space_O(max(N,M)), AI_can_be_used_to_solve_the_task | 3 | 81.61
7880

7981
#### Day 11 Linked List
8082

@@ -162,6 +164,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
162164

163165
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
164166
|-|-|-|-|-|-
167+
| 0003 |[Longest Substring Without Repeating Characters](src/main/js/g0001_0100/s0003_longest_substring_without_repeating_characters/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Sliding_Window, Big_O_Time_O(n)_Space_O(1), AI_can_be_used_to_solve_the_task | 3 | 98.96
165168

166169
#### Day 7 Breadth First Search Depth First Search
167170

@@ -274,6 +277,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
274277

275278
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
276279
|-|-|-|-|-|-
280+
| 0005 |[Longest Palindromic Substring](src/main/js/g0001_0100/s0005_longest_palindromic_substring/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Dynamic_Programming, Big_O_Time_O(n)_Space_O(n) | 10 | 99.54
277281

278282
#### Day 15 Dynamic Programming
279283

@@ -560,6 +564,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
560564

561565
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
562566
|-|-|-|-|-|-
567+
| 0005 |[Longest Palindromic Substring](src/main/js/g0001_0100/s0005_longest_palindromic_substring/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Dynamic_Programming, Big_O_Time_O(n)_Space_O(n) | 10 | 99.54
563568

564569
#### Day 18
565570

@@ -719,6 +724,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
719724

720725
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
721726
|-|-|-|-|-|-
727+
| 0002 |[Add Two Numbers](src/main/js/g0001_0100/s0002_add_two_numbers/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Math, Linked_List, Recursion, Big_O_Time_O(max(N,M))_Space_O(max(N,M)), AI_can_be_used_to_solve_the_task | 3 | 81.61
722728

723729
#### Day 16
724730

@@ -1018,6 +1024,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
10181024

10191025
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
10201026
|-|-|-|-|-|-
1027+
| 0003 |[Longest Substring Without Repeating Characters](src/main/js/g0001_0100/s0003_longest_substring_without_repeating_characters/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Sliding_Window, Big_O_Time_O(n)_Space_O(1), AI_can_be_used_to_solve_the_task | 3 | 98.96
10211028

10221029
#### Day 15 Tree
10231030

@@ -1060,6 +1067,8 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
10601067

10611068
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
10621069
|-|-|-|-|-|-
1070+
| 0003 |[Longest Substring Without Repeating Characters](src/main/js/g0001_0100/s0003_longest_substring_without_repeating_characters/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Sliding_Window, Big_O_Time_O(n)_Space_O(1), AI_can_be_used_to_solve_the_task | 3 | 98.96
1071+
| 0005 |[Longest Palindromic Substring](src/main/js/g0001_0100/s0005_longest_palindromic_substring/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Dynamic_Programming, Big_O_Time_O(n)_Space_O(n) | 10 | 99.54
10631072

10641073
#### Udemy Binary Search
10651074

@@ -1209,6 +1218,10 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
12091218

12101219
| # | Title | Difficulty | Tag | Time, ms | Time, %
12111220
|------|----------------|-------------|-------------|----------|---------
1221+
| 0005 |[Longest Palindromic Substring](src/main/js/g0001_0100/s0005_longest_palindromic_substring/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Dynamic_Programming, Data_Structure_II_Day_9_String, Algorithm_II_Day_14_Dynamic_Programming, Dynamic_Programming_I_Day_17, Udemy_Strings, Big_O_Time_O(n)_Space_O(n) | 10 | 99.54
1222+
| 0004 |[Median of Two Sorted Arrays](src/main/js/g0001_0100/s0004_median_of_two_sorted_arrays/solution.js)| Hard | Top_100_Liked_Questions, Top_Interview_Questions, Array, Binary_Search, Divide_and_Conquer, Big_O_Time_O(log(min(N,M)))_Space_O(1), AI_can_be_used_to_solve_the_task | 3 | 91.90
1223+
| 0003 |[Longest Substring Without Repeating Characters](src/main/js/g0001_0100/s0003_longest_substring_without_repeating_characters/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Sliding_Window, Algorithm_I_Day_6_Sliding_Window, Level_2_Day_14_Sliding_Window/Two_Pointer, Udemy_Strings, Big_O_Time_O(n)_Space_O(1), AI_can_be_used_to_solve_the_task | 3 | 98.96
1224+
| 0002 |[Add Two Numbers](src/main/js/g0001_0100/s0002_add_two_numbers/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Math, Linked_List, Recursion, Data_Structure_II_Day_10_Linked_List, Programming_Skills_II_Day_15, Big_O_Time_O(max(N,M))_Space_O(max(N,M)), AI_can_be_used_to_solve_the_task | 3 | 81.61
12121225
| 0001 |[Two Sum](src/main/js/g0001_0100/s0001_two_sum/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Data_Structure_I_Day_2_Array, Level_1_Day_13_Hashmap, Udemy_Arrays, Big_O_Time_O(n)_Space_O(n), AI_can_be_used_to_solve_the_task | 1 | 89.15
12131226

12141227
## Contributing
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
class ListNode {
2+
constructor(val, next) {
3+
this.val = val === undefined ? 0 : val
4+
this.next = next === undefined ? null : next
5+
}
6+
7+
toString() {
8+
let result = `${this.val}`
9+
let current = this.next
10+
while (current !== null) {
11+
result += `, ${current.val}`
12+
current = current.next
13+
}
14+
return result
15+
}
16+
}
17+
18+
export { ListNode }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
2\. Add Two Numbers
2+
3+
Medium
4+
5+
You are given two **non-empty** linked lists representing two non-negative integers. The digits are stored in **reverse order**, and each of their nodes contains a single digit. Add the two numbers and return the sum as a linked list.
6+
7+
You may assume the two numbers do not contain any leading zero, except the number 0 itself.
8+
9+
**Example 1:**
10+
11+
![](https://assets.leetcode.com/uploads/2020/10/02/addtwonumber1.jpg)
12+
13+
**Input:** l1 = [2,4,3], l2 = [5,6,4]
14+
15+
**Output:** [7,0,8]
16+
17+
**Explanation:** 342 + 465 = 807.
18+
19+
**Example 2:**
20+
21+
**Input:** l1 = [0], l2 = [0]
22+
23+
**Output:** [0]
24+
25+
**Example 3:**
26+
27+
**Input:** l1 = [9,9,9,9,9,9,9], l2 = [9,9,9,9]
28+
29+
**Output:** [8,9,9,9,0,0,0,1]
30+
31+
**Constraints:**
32+
33+
* The number of nodes in each linked list is in the range `[1, 100]`.
34+
* `0 <= Node.val <= 9`
35+
* It is guaranteed that the list represents a number that does not have leading zeros.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Math #Linked_List #Recursion
2+
// #Data_Structure_II_Day_10_Linked_List #Programming_Skills_II_Day_15
3+
// #Big_O_Time_O(max(N,M))_Space_O(max(N,M)) #AI_can_be_used_to_solve_the_task
4+
// #2024_11_29_Time_3_ms_(81.61%)_Space_55.3_MB_(96.39%)
5+
6+
import { ListNode } from 'src/main/js/com_github_leetcode/listnode'
7+
8+
/**
9+
* Definition for singly-linked list.
10+
* function ListNode(val, next) {
11+
* this.val = (val===undefined ? 0 : val)
12+
* this.next = (next===undefined ? null : next)
13+
* }
14+
*/
15+
/**
16+
* @param {ListNode} l1
17+
* @param {ListNode} l2
18+
* @return {ListNode}
19+
*/
20+
var addTwoNumbers = function (l1, l2) {
21+
const dummyHead = new ListNode(0)
22+
let p = l1,
23+
q = l2,
24+
curr = dummyHead
25+
let carry = 0
26+
27+
while (p !== null || q !== null) {
28+
const x = p !== null ? p.val : 0
29+
const y = q !== null ? q.val : 0
30+
const sum = carry + x + y
31+
carry = Math.floor(sum / 10)
32+
curr.next = new ListNode(sum % 10)
33+
curr = curr.next
34+
35+
if (p !== null) p = p.next
36+
if (q !== null) q = q.next
37+
}
38+
39+
if (carry > 0) {
40+
curr.next = new ListNode(carry)
41+
}
42+
43+
return dummyHead.next
44+
}
45+
46+
export { addTwoNumbers }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
3\. Longest Substring Without Repeating Characters
2+
3+
Medium
4+
5+
Given a string `s`, find the length of the **longest substring** without repeating characters.
6+
7+
**Example 1:**
8+
9+
**Input:** s = "abcabcbb"
10+
11+
**Output:** 3
12+
13+
**Explanation:** The answer is "abc", with the length of 3.
14+
15+
**Example 2:**
16+
17+
**Input:** s = "bbbbb"
18+
19+
**Output:** 1
20+
21+
**Explanation:** The answer is "b", with the length of 1.
22+
23+
**Example 3:**
24+
25+
**Input:** s = "pwwkew"
26+
27+
**Output:** 3
28+
29+
**Explanation:** The answer is "wke", with the length of 3. Notice that the answer must be a substring, "pwke" is a subsequence and not a substring.
30+
31+
**Example 4:**
32+
33+
**Input:** s = ""
34+
35+
**Output:** 0
36+
37+
**Constraints:**
38+
39+
* <code>0 <= s.length <= 5 * 10<sup>4</sup></code>
40+
* `s` consists of English letters, digits, symbols and spaces.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #String #Hash_Table #Sliding_Window
2+
// #Algorithm_I_Day_6_Sliding_Window #Level_2_Day_14_Sliding_Window/Two_Pointer #Udemy_Strings
3+
// #Big_O_Time_O(n)_Space_O(1) #AI_can_be_used_to_solve_the_task
4+
// #2024_11_29_Time_3_ms_(98.96%)_Space_53.9_MB_(69.91%)
5+
6+
/**
7+
* @param {string} s
8+
* @return {number}
9+
*/
10+
var lengthOfLongestSubstring = function (s) {
11+
const lastIndices = new Array(256).fill(-1) // Array to store last indices of characters
12+
let maxLen = 0 // Tracks maximum length of substring
13+
let curLen = 0 // Current substring length
14+
let start = 0 // Start index of the current substring
15+
16+
for (let i = 0; i < s.length; i++) {
17+
const cur = s.charCodeAt(i) // Get ASCII code of the current character
18+
19+
if (lastIndices[cur] < start) {
20+
// If the character hasn't been seen in the current substring
21+
lastIndices[cur] = i
22+
curLen++
23+
} else {
24+
// If the character was seen, update the start position
25+
const lastIndex = lastIndices[cur]
26+
start = lastIndex + 1
27+
curLen = i - start + 1
28+
lastIndices[cur] = i
29+
}
30+
31+
maxLen = Math.max(maxLen, curLen)
32+
}
33+
34+
return maxLen
35+
}
36+
37+
export { lengthOfLongestSubstring }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
4\. Median of Two Sorted Arrays
2+
3+
Hard
4+
5+
Given two sorted arrays `nums1` and `nums2` of size `m` and `n` respectively, return **the median** of the two sorted arrays.
6+
7+
The overall run time complexity should be `O(log (m+n))`.
8+
9+
**Example 1:**
10+
11+
**Input:** nums1 = [1,3], nums2 = [2]
12+
13+
**Output:** 2.00000
14+
15+
**Explanation:** merged array = [1,2,3] and median is 2.
16+
17+
**Example 2:**
18+
19+
**Input:** nums1 = [1,2], nums2 = [3,4]
20+
21+
**Output:** 2.50000
22+
23+
**Explanation:** merged array = [1,2,3,4] and median is (2 + 3) / 2 = 2.5.
24+
25+
**Example 3:**
26+
27+
**Input:** nums1 = [0,0], nums2 = [0,0]
28+
29+
**Output:** 0.00000
30+
31+
**Example 4:**
32+
33+
**Input:** nums1 = [], nums2 = [1]
34+
35+
**Output:** 1.00000
36+
37+
**Example 5:**
38+
39+
**Input:** nums1 = [2], nums2 = []
40+
41+
**Output:** 2.00000
42+
43+
**Constraints:**
44+
45+
* `nums1.length == m`
46+
* `nums2.length == n`
47+
* `0 <= m <= 1000`
48+
* `0 <= n <= 1000`
49+
* `1 <= m + n <= 2000`
50+
* <code>-10<sup>6</sup> <= nums1[i], nums2[i] <= 10<sup>6</sup></code>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
// #Hard #Top_100_Liked_Questions #Top_Interview_Questions #Array #Binary_Search #Divide_and_Conquer
2+
// #Big_O_Time_O(log(min(N,M)))_Space_O(1) #AI_can_be_used_to_solve_the_task
3+
// #2024_11_29_Time_3_ms_(91.90%)_Space_54.1_MB_(88.03%)
4+
5+
/**
6+
* @param {number[]} nums1
7+
* @param {number[]} nums2
8+
* @return {number}
9+
*/
10+
var findMedianSortedArrays = function (nums1, nums2) {
11+
if (nums2.length < nums1.length) {
12+
return findMedianSortedArrays(nums2, nums1)
13+
}
14+
15+
let n1 = nums1.length,
16+
n2 = nums2.length
17+
let low = 0,
18+
high = n1
19+
20+
while (low <= high) {
21+
let cut1 = Math.floor((low + high) / 2)
22+
let cut2 = Math.floor((n1 + n2 + 1) / 2) - cut1
23+
24+
let l1 = cut1 === 0 ? -Infinity : nums1[cut1 - 1]
25+
let l2 = cut2 === 0 ? -Infinity : nums2[cut2 - 1]
26+
let r1 = cut1 === n1 ? Infinity : nums1[cut1]
27+
let r2 = cut2 === n2 ? Infinity : nums2[cut2]
28+
29+
if (l1 <= r2 && l2 <= r1) {
30+
if ((n1 + n2) % 2 === 0) {
31+
return (Math.max(l1, l2) + Math.min(r1, r2)) / 2.0
32+
}
33+
return Math.max(l1, l2)
34+
} else if (l1 > r2) {
35+
high = cut1 - 1
36+
} else {
37+
low = cut1 + 1
38+
}
39+
}
40+
41+
return 0.0
42+
}
43+
44+
export { findMedianSortedArrays }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
5\. Longest Palindromic Substring
2+
3+
Medium
4+
5+
Given a string `s`, return _the longest palindromic substring_ in `s`.
6+
7+
**Example 1:**
8+
9+
**Input:** s = "babad"
10+
11+
**Output:** "bab" **Note:** "aba" is also a valid answer.
12+
13+
**Example 2:**
14+
15+
**Input:** s = "cbbd"
16+
17+
**Output:** "bb"
18+
19+
**Example 3:**
20+
21+
**Input:** s = "a"
22+
23+
**Output:** "a"
24+
25+
**Example 4:**
26+
27+
**Input:** s = "ac"
28+
29+
**Output:** "a"
30+
31+
**Constraints:**
32+
33+
* `1 <= s.length <= 1000`
34+
* `s` consist of only digits and English letters.

0 commit comments

Comments
 (0)