Skip to content

Commit 551cf39

Browse files
authored
Added tasks 48-55
1 parent 20a7050 commit 551cf39

File tree

16 files changed

+419
-0
lines changed

16 files changed

+419
-0
lines changed

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
169169

170170
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
171171
|-|-|-|-|-|-
172+
| 0055 |[Jump Game](src/main/js/g0001_0100/s0055_jump_game/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Greedy, Big_O_Time_O(n)_Space_O(1) | 0 | 100.00
172173

173174
#### Day 13 Dynamic Programming
174175

@@ -405,12 +406,14 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
405406

406407
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
407408
|-|-|-|-|-|-
409+
| 0055 |[Jump Game](src/main/js/g0001_0100/s0055_jump_game/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Greedy, Big_O_Time_O(n)_Space_O(1) | 0 | 100.00
408410
| 0045 |[Jump Game II](src/main/js/g0001_0100/s0045_jump_game_ii/solution.js)| Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Greedy, Big_O_Time_O(n)_Space_O(1) | 0 | 100.00
409411

410412
#### Day 5
411413

412414
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
413415
|-|-|-|-|-|-
416+
| 0053 |[Maximum Subarray](src/main/js/g0001_0100/s0053_maximum_subarray/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Divide_and_Conquer, Big_O_Time_O(n)_Space_O(1) | 1 | 85.69
414417

415418
#### Day 6
416419

@@ -592,6 +595,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
592595

593596
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
594597
|-|-|-|-|-|-
598+
| 0048 |[Rotate Image](src/main/js/g0001_0100/s0048_rotate_image/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Math, Matrix, Big_O_Time_O(n^2)_Space_O(1) | 0 | 100.00
595599

596600
#### Day 8
597601

@@ -612,6 +616,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
612616

613617
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
614618
|-|-|-|-|-|-
619+
| 0049 |[Group Anagrams](src/main/js/g0001_0100/s0049_group_anagrams/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, String, Hash_Table, Sorting, Big_O_Time_O(n\*k_log_k)_Space_O(n) | 24 | 91.62
615620

616621
#### Day 12
617622

@@ -985,6 +990,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
985990
| 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
986991
| 0020 |[Valid Parentheses](src/main/js/g0001_0100/s0020_valid_parentheses/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, String, Stack, Big_O_Time_O(n)_Space_O(n) | 0 | 100.00
987992
| 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
993+
| 0049 |[Group Anagrams](src/main/js/g0001_0100/s0049_group_anagrams/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, String, Hash_Table, Sorting, Big_O_Time_O(n\*k_log_k)_Space_O(n) | 24 | 91.62
988994

989995
#### Udemy Binary Search
990996

@@ -997,6 +1003,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
9971003
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
9981004
|-|-|-|-|-|-
9991005
| 0001 |[Two Sum](src/main/js/g0001_0100/s0001_two_sum/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Big_O_Time_O(n)_Space_O(n), AI_can_be_used_to_solve_the_task | 1 | 89.15
1006+
| 0055 |[Jump Game](src/main/js/g0001_0100/s0055_jump_game/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Greedy, Big_O_Time_O(n)_Space_O(1) | 0 | 100.00
10001007
| 0041 |[First Missing Positive](src/main/js/g0001_0100/s0041_first_missing_positive/solution.js)| Hard | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Big_O_Time_O(n)_Space_O(n) | 1 | 98.86
10011008

10021009
#### Udemy Two Pointers
@@ -1010,6 +1017,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
10101017

10111018
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
10121019
|-|-|-|-|-|-
1020+
| 0053 |[Maximum Subarray](src/main/js/g0001_0100/s0053_maximum_subarray/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Divide_and_Conquer, Big_O_Time_O(n)_Space_O(1) | 1 | 85.69
10131021

10141022
#### Udemy Sorting Algorithms
10151023

@@ -1020,6 +1028,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
10201028

10211029
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
10221030
|-|-|-|-|-|-
1031+
| 0048 |[Rotate Image](src/main/js/g0001_0100/s0048_rotate_image/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Math, Matrix, Big_O_Time_O(n^2)_Space_O(1) | 0 | 100.00
10231032

10241033
#### Udemy Linked List
10251034

@@ -1075,6 +1084,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
10751084

10761085
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
10771086
|-|-|-|-|-|-
1087+
| 0053 |[Maximum Subarray](src/main/js/g0001_0100/s0053_maximum_subarray/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Divide_and_Conquer, Big_O_Time_O(n)_Space_O(1) | 1 | 85.69
10781088

10791089
#### Day 2 Array
10801090

@@ -1161,6 +1171,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
11611171

11621172
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
11631173
|-|-|-|-|-|-
1174+
| 0048 |[Rotate Image](src/main/js/g0001_0100/s0048_rotate_image/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Math, Matrix, Big_O_Time_O(n^2)_Space_O(1) | 0 | 100.00
11641175

11651176
#### Day 4 Array
11661177

@@ -1186,6 +1197,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
11861197

11871198
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
11881199
|-|-|-|-|-|-
1200+
| 0049 |[Group Anagrams](src/main/js/g0001_0100/s0049_group_anagrams/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, String, Hash_Table, Sorting, Big_O_Time_O(n\*k_log_k)_Space_O(n) | 24 | 91.62
11891201

11901202
#### Day 9 String
11911203

@@ -1260,6 +1272,11 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
12601272

12611273
| # | Title | Difficulty | Tag | Time, ms | Time, %
12621274
|------|----------------|-------------|-------------|----------|---------
1275+
| 0055 |[Jump Game](src/main/js/g0001_0100/s0055_jump_game/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Greedy, Algorithm_II_Day_12_Dynamic_Programming, Dynamic_Programming_I_Day_4, Udemy_Arrays, Big_O_Time_O(n)_Space_O(1) | 0 | 100.00
1276+
| 0053 |[Maximum Subarray](src/main/js/g0001_0100/s0053_maximum_subarray/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Divide_and_Conquer, Data_Structure_I_Day_1_Array, Dynamic_Programming_I_Day_5, Udemy_Famous_Algorithm, Big_O_Time_O(n)_Space_O(1) | 1 | 85.69
1277+
| 0051 |[N-Queens](src/main/js/g0001_0100/s0051_n_queens/solution.js)| Hard | Top_100_Liked_Questions, Array, Backtracking, Big_O_Time_O(N!)_Space_O(N) | 6 | 96.66
1278+
| 0049 |[Group Anagrams](src/main/js/g0001_0100/s0049_group_anagrams/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, String, Hash_Table, Sorting, Data_Structure_II_Day_8_String, Programming_Skills_II_Day_11, Udemy_Strings, Big_O_Time_O(n\*k_log_k)_Space_O(n) | 24 | 91.62
1279+
| 0048 |[Rotate Image](src/main/js/g0001_0100/s0048_rotate_image/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Math, Matrix, Data_Structure_II_Day_3_Array, Programming_Skills_II_Day_7, Udemy_2D_Arrays/Matrix, Big_O_Time_O(n^2)_Space_O(1) | 0 | 100.00
12631280
| 0046 |[Permutations](src/main/js/g0001_0100/s0046_permutations/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Backtracking, Algorithm_I_Day_11_Recursion_Backtracking, Level_2_Day_20_Brute_Force/Backtracking, Udemy_Backtracking/Recursion, Big_O_Time_O(n\*n!)_Space_O(n+n!) | 0 | 100.00
12641281
| 0045 |[Jump Game II](src/main/js/g0001_0100/s0045_jump_game_ii/solution.js)| Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Greedy, Algorithm_II_Day_13_Dynamic_Programming, Dynamic_Programming_I_Day_4, Big_O_Time_O(n)_Space_O(1) | 0 | 100.00
12651282
| 0042 |[Trapping Rain Water](src/main/js/g0001_0100/s0042_trapping_rain_water/solution.js)| Hard | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Two_Pointers, Stack, Monotonic_Stack, Dynamic_Programming_I_Day_9, Udemy_Two_Pointers, Big_O_Time_O(n)_Space_O(1) | 0 | 100.00
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
48\. Rotate Image
2+
3+
Medium
4+
5+
You are given an `n x n` 2D `matrix` representing an image, rotate the image by **90** degrees (clockwise).
6+
7+
You have to rotate the image [**in-place**](https://en.wikipedia.org/wiki/In-place_algorithm), which means you have to modify the input 2D matrix directly. **DO NOT** allocate another 2D matrix and do the rotation.
8+
9+
**Example 1:**
10+
11+
![](https://assets.leetcode.com/uploads/2020/08/28/mat1.jpg)
12+
13+
**Input:** matrix = [[1,2,3],[4,5,6],[7,8,9]]
14+
15+
**Output:** [[7,4,1],[8,5,2],[9,6,3]]
16+
17+
**Example 2:**
18+
19+
![](https://assets.leetcode.com/uploads/2020/08/28/mat2.jpg)
20+
21+
**Input:** matrix = [[5,1,9,11],[2,4,8,10],[13,3,6,7],[15,14,12,16]]
22+
23+
**Output:** [[15,13,2,5],[14,3,4,1],[12,6,8,9],[16,7,10,11]]
24+
25+
**Constraints:**
26+
27+
* `n == matrix.length == matrix[i].length`
28+
* `1 <= n <= 20`
29+
* `-1000 <= matrix[i][j] <= 1000`
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Array #Math #Matrix
2+
// #Data_Structure_II_Day_3_Array #Programming_Skills_II_Day_7 #Udemy_2D_Arrays/Matrix
3+
// #Big_O_Time_O(n^2)_Space_O(1) #2024_12_09_Time_0_ms_(100.00%)_Space_51.6_MB_(12.89%)
4+
5+
/**
6+
* @param {number[][]} matrix
7+
* @return {void} Do not return anything, modify matrix in-place instead.
8+
*/
9+
var rotate = function(matrix) {
10+
const n = matrix.length
11+
for (let i = 0; i < Math.floor(n / 2); i++) {
12+
for (let j = i; j < n - i - 1; j++) {
13+
const positions = [
14+
[i, j],
15+
[j, n - 1 - i],
16+
[n - 1 - i, n - 1 - j],
17+
[n - 1 - j, i],
18+
];
19+
20+
let temp = matrix[positions[0][0]][positions[0][1]]
21+
for (let k = 1; k < positions.length; k++) {
22+
const [row, col] = positions[k]
23+
const current = matrix[row][col]
24+
matrix[row][col] = temp
25+
temp = current
26+
}
27+
matrix[positions[0][0]][positions[0][1]] = temp
28+
}
29+
}
30+
};
31+
32+
export { rotate }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
49\. Group Anagrams
2+
3+
Medium
4+
5+
Given an array of strings `strs`, group **the anagrams** together. You can return the answer in **any order**.
6+
7+
An **Anagram** is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once.
8+
9+
**Example 1:**
10+
11+
**Input:** strs = ["eat","tea","tan","ate","nat","bat"]
12+
13+
**Output:** [["bat"],["nat","tan"],["ate","eat","tea"]]
14+
15+
**Example 2:**
16+
17+
**Input:** strs = [""]
18+
19+
**Output:** [[""]]
20+
21+
**Example 3:**
22+
23+
**Input:** strs = ["a"]
24+
25+
**Output:** [["a"]]
26+
27+
**Constraints:**
28+
29+
* <code>1 <= strs.length <= 10<sup>4</sup></code>
30+
* `0 <= strs[i].length <= 100`
31+
* `strs[i]` consists of lowercase English letters.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Array #String #Hash_Table #Sorting
2+
// #Data_Structure_II_Day_8_String #Programming_Skills_II_Day_11 #Udemy_Strings
3+
// #Big_O_Time_O(n*k_log_k)_Space_O(n) #2024_12_09_Time_24_ms_(91.62%)_Space_64.4_MB_(18.40%)
4+
5+
/**
6+
* @param {string[]} strs
7+
* @return {string[][]}
8+
*/
9+
var groupAnagrams = function(strs) {
10+
const anagrams = new Map()
11+
12+
for (const word of strs) {
13+
const freq = new Array(26).fill(0)
14+
for (const char of word) {
15+
freq[char.charCodeAt(0) - 'a'.charCodeAt(0)]++
16+
}
17+
const keyString = freq.join(',')
18+
19+
if (!anagrams.has(keyString)) {
20+
anagrams.set(keyString, [])
21+
}
22+
anagrams.get(keyString).push(word)
23+
}
24+
25+
return Array.from(anagrams.values())
26+
};
27+
28+
export { groupAnagrams }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
51\. N-Queens
2+
3+
Hard
4+
5+
The **n-queens** puzzle is the problem of placing `n` queens on an `n x n` chessboard such that no two queens attack each other.
6+
7+
Given an integer `n`, return _all distinct solutions to the **n-queens puzzle**_. You may return the answer in **any order**.
8+
9+
Each solution contains a distinct board configuration of the n-queens' placement, where `'Q'` and `'.'` both indicate a queen and an empty space, respectively.
10+
11+
**Example 1:**
12+
13+
![](https://assets.leetcode.com/uploads/2020/11/13/queens.jpg)
14+
15+
**Input:** n = 4
16+
17+
**Output:** [[".Q..","...Q","Q...","..Q."],["..Q.","Q...","...Q",".Q.."]]
18+
19+
**Explanation:** There exist two distinct solutions to the 4-queens puzzle as shown above
20+
21+
**Example 2:**
22+
23+
**Input:** n = 1
24+
25+
**Output:** [["Q"]]
26+
27+
**Constraints:**
28+
29+
* `1 <= n <= 9`
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
// #Hard #Top_100_Liked_Questions #Array #Backtracking #Big_O_Time_O(N!)_Space_O(N)
2+
// #2024_12_09_Time_6_ms_(96.66%)_Space_52.2_MB_(83.66%)
3+
4+
/**
5+
* @param {number} n
6+
* @return {string[][]}
7+
*/
8+
var solveNQueens = function(n) {
9+
const board = Array.from({ length: n }, () => Array(n).fill('.'))
10+
const res = []
11+
const leftRow = new Array(n).fill(0)
12+
const upperDiagonal = new Array(2 * n - 1).fill(0)
13+
const lowerDiagonal = new Array(2 * n - 1).fill(0)
14+
15+
const solve = (col) => {
16+
if (col === n) {
17+
res.push(construct(board))
18+
return
19+
}
20+
for (let row = 0; row < n; row++) {
21+
if (
22+
leftRow[row] === 0 &&
23+
lowerDiagonal[row + col] === 0 &&
24+
upperDiagonal[n - 1 + col - row] === 0
25+
) {
26+
board[row][col] = 'Q'
27+
leftRow[row] = 1
28+
lowerDiagonal[row + col] = 1
29+
upperDiagonal[n - 1 + col - row] = 1
30+
solve(col + 1)
31+
board[row][col] = '.'
32+
leftRow[row] = 0
33+
lowerDiagonal[row + col] = 0
34+
upperDiagonal[n - 1 + col - row] = 0
35+
}
36+
}
37+
}
38+
39+
const construct = (board) => {
40+
return board.map(row => row.join(''))
41+
}
42+
43+
solve(0)
44+
return res
45+
}
46+
47+
export { solveNQueens }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
53\. Maximum Subarray
2+
3+
Medium
4+
5+
Given an integer array `nums`, find the contiguous subarray (containing at least one number) which has the largest sum and return _its sum_.
6+
7+
A **subarray** is a **contiguous** part of an array.
8+
9+
**Example 1:**
10+
11+
**Input:** nums = [-2,1,-3,4,-1,2,1,-5,4]
12+
13+
**Output:** 6
14+
15+
**Explanation:** [4,-1,2,1] has the largest sum = 6.
16+
17+
**Example 2:**
18+
19+
**Input:** nums = [1]
20+
21+
**Output:** 1
22+
23+
**Example 3:**
24+
25+
**Input:** nums = [5,4,-1,7,8]
26+
27+
**Output:** 23
28+
29+
**Constraints:**
30+
31+
* <code>1 <= nums.length <= 10<sup>5</sup></code>
32+
* <code>-10<sup>4</sup> <= nums[i] <= 10<sup>4</sup></code>
33+
34+
**Follow up:** If you have figured out the `O(n)` solution, try coding another solution using the **divide and conquer** approach, which is more subtle.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Array #Dynamic_Programming
2+
// #Divide_and_Conquer #Data_Structure_I_Day_1_Array #Dynamic_Programming_I_Day_5
3+
// #Udemy_Famous_Algorithm #Big_O_Time_O(n)_Space_O(1)
4+
// #2024_12_09_Time_1_ms_(85.69%)_Space_59.1_MB_(13.72%)
5+
6+
/**
7+
* @param {number[]} nums
8+
* @return {number}
9+
*/
10+
var maxSubArray = function(nums) {
11+
let maxi = Number.MIN_SAFE_INTEGER
12+
let sum = 0
13+
14+
for (const num of nums) {
15+
// Calculate subarray sum
16+
sum += num
17+
maxi = Math.max(sum, maxi)
18+
if (sum < 0) {
19+
// Reset sum if it's negative
20+
sum = 0
21+
}
22+
}
23+
24+
return maxi
25+
};
26+
27+
export { maxSubArray }

0 commit comments

Comments
 (0)