Skip to content

Commit 86deffc

Browse files
move problems into its own folder
1 parent 1a654f0 commit 86deffc

25 files changed

+42
-42
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
| # | Title | Solutions | Video | Difficulty | Tag
22
|------|-----------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|------------|----------------------------------------------------------------------
3-
| 3186 | [Maximum Total Damage With Spell Casting](https://leetcode.com/problems/maximum-total-damage-with-spell-casting/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/_3186.java) | | Medium | DP
4-
| 3185 | [Count Pairs That Form a Complete Day II](https://leetcode.com/problems/count-pairs-that-form-a-complete-day-ii/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/_3185.java) | | Medium |
5-
| 3184 | [Count Pairs That Form a Complete Day I](https://leetcode.com/problems/count-pairs-that-form-a-complete-day-i/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/_3184.java) | | Easy |
6-
| 3178 | [Find the Child Who Has the Ball After K Seconds](https://leetcode.com/problems/find-the-child-who-has-the-ball-after-k-seconds/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/_3178.java) | | Easy |
7-
| 3175 | [Find The First Player to win K Games in a Row](https://leetcode.com/problems/find-the-first-player-to-win-k-games-in-a-row/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/_3175.java) | | Medium |
8-
| 3174 | [Clear Digits](https://leetcode.com/problems/clear-digits/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/_3174.java) | | Easy |
9-
| 3164 | [Find the Number of Good Pairs II](https://leetcode.com/problems/find-the-number-of-good-pairs-ii/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/_3164.java) | | Medium |
10-
| 3162 | [Find the Number of Good Pairs I](https://leetcode.com/problems/find-the-number-of-good-pairs-i/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/_3162.java) | | Easy |
11-
| 3157 | [Find the Level of Tree with Minimum Sum](https://leetcode.com/problems/find-the-level-of-tree-with-minimum-sum/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/_3157.java) | | Medium |BFS
12-
| 3131 | [Find the Integer Added to Array I](https://leetcode.com/problems/find-the-integer-added-to-array-i/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/_3131.java) | | Easy |
13-
| 3127 | [Make a Square with the Same Color](https://leetcode.com/problems/make-a-square-with-the-same-color/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/_3127.java) | | Easy |
14-
| 3120 | [Count the Number of Special Characters I](https://leetcode.com/problems/count-the-number-of-special-characters-i/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/_3120.java) | | Easy |
15-
| 3046 | [Split the Array](https://leetcode.com/problems/split-the-array/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/_3046.java) | | Easy |
16-
| 3042 | [Count Prefix and Suffix Pairs I](https://leetcode.com/problems/count-prefix-and-suffix-pairs-i/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/_3042.java) | | Easy |
17-
| 3038 | [Maximum Number of Operations With the Same Score I](https://leetcode.com/problems/maximum-number-of-operations-with-the-same-score-i/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/_3038.java) | | Easy |
18-
| 3033 | [Modify the Matrix](https://leetcode.com/problems/modify-the-matrix/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/_3033.java) | | Easy |
19-
| 3006 | [Find Beautiful Indices in the Given Array I](https://leetcode.com/problems/find-beautiful-indices-in-the-given-array-i/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/_3006.java) | | Medium |
20-
| 3005 | [Count Elements With Maximum Frequency](https://leetcode.com/problems/count-elements-with-maximum-frequency/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/_3005.java) | | Easy |
3+
| 3186 | [Maximum Total Damage With Spell Casting](https://leetcode.com/problems/maximum-total-damage-with-spell-casting/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/fourththousand/_3186.java) | | Medium | DP
4+
| 3185 | [Count Pairs That Form a Complete Day II](https://leetcode.com/problems/count-pairs-that-form-a-complete-day-ii/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/fourththousand/_3185.java) | | Medium |
5+
| 3184 | [Count Pairs That Form a Complete Day I](https://leetcode.com/problems/count-pairs-that-form-a-complete-day-i/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/fourththousand/_3184.java) | | Easy |
6+
| 3178 | [Find the Child Who Has the Ball After K Seconds](https://leetcode.com/problems/find-the-child-who-has-the-ball-after-k-seconds/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/fourththousand/_3178.java) | | Easy |
7+
| 3175 | [Find The First Player to win K Games in a Row](https://leetcode.com/problems/find-the-first-player-to-win-k-games-in-a-row/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/fourththousand/_3175.java) | | Medium |
8+
| 3174 | [Clear Digits](https://leetcode.com/problems/clear-digits/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/fourththousand/_3174.java) | | Easy |
9+
| 3164 | [Find the Number of Good Pairs II](https://leetcode.com/problems/find-the-number-of-good-pairs-ii/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/fourththousand/_3164.java) | | Medium |
10+
| 3162 | [Find the Number of Good Pairs I](https://leetcode.com/problems/find-the-number-of-good-pairs-i/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/fourththousand/_3162.java) | | Easy |
11+
| 3157 | [Find the Level of Tree with Minimum Sum](https://leetcode.com/problems/find-the-level-of-tree-with-minimum-sum/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/fourththousand/_3157.java) | | Medium |BFS
12+
| 3131 | [Find the Integer Added to Array I](https://leetcode.com/problems/find-the-integer-added-to-array-i/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/fourththousand/_3131.java) | | Easy |
13+
| 3127 | [Make a Square with the Same Color](https://leetcode.com/problems/make-a-square-with-the-same-color/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/fourththousand/_3127.java) | | Easy |
14+
| 3120 | [Count the Number of Special Characters I](https://leetcode.com/problems/count-the-number-of-special-characters-i/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/fourththousand/_3120.java) | | Easy |
15+
| 3046 | [Split the Array](https://leetcode.com/problems/split-the-array/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/fourththousand/_3046.java) | | Easy |
16+
| 3042 | [Count Prefix and Suffix Pairs I](https://leetcode.com/problems/count-prefix-and-suffix-pairs-i/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/fourththousand/_3042.java) | | Easy |
17+
| 3038 | [Maximum Number of Operations With the Same Score I](https://leetcode.com/problems/maximum-number-of-operations-with-the-same-score-i/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/fourththousand/_3038.java) | | Easy |
18+
| 3033 | [Modify the Matrix](https://leetcode.com/problems/modify-the-matrix/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/fourththousand/_3033.java) | | Easy |
19+
| 3006 | [Find Beautiful Indices in the Given Array I](https://leetcode.com/problems/find-beautiful-indices-in-the-given-array-i/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/fourththousand/_3006.java) | | Medium |
20+
| 3005 | [Count Elements With Maximum Frequency](https://leetcode.com/problems/count-elements-with-maximum-frequency/) | [Java](https://github.com/fishercoder1534/Leetcode/blob/master/src/main/java/com/fishercoder/solutions/fourththousand/_3005.java) | | Easy |

src/main/java/com/fishercoder/solutions/_3005.java renamed to src/main/java/com/fishercoder/solutions/fourththousand/_3005.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fishercoder.solutions;
1+
package com.fishercoder.solutions.fourththousand;
22

33
import java.util.HashMap;
44
import java.util.Map;

src/main/java/com/fishercoder/solutions/_3006.java renamed to src/main/java/com/fishercoder/solutions/fourththousand/_3006.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fishercoder.solutions;
1+
package com.fishercoder.solutions.fourththousand;
22

33
import java.util.ArrayList;
44
import java.util.List;

src/main/java/com/fishercoder/solutions/_3033.java renamed to src/main/java/com/fishercoder/solutions/fourththousand/_3033.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fishercoder.solutions;
1+
package com.fishercoder.solutions.fourththousand;
22

33
public class _3033 {
44
public static class Solution1 {

src/main/java/com/fishercoder/solutions/_3038.java renamed to src/main/java/com/fishercoder/solutions/fourththousand/_3038.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fishercoder.solutions;
1+
package com.fishercoder.solutions.fourththousand;
22

33
public class _3038 {
44
public static class Solution1 {

src/main/java/com/fishercoder/solutions/_3042.java renamed to src/main/java/com/fishercoder/solutions/fourththousand/_3042.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fishercoder.solutions;
1+
package com.fishercoder.solutions.fourththousand;
22

33
public class _3042 {
44
public static class Solution1 {

src/main/java/com/fishercoder/solutions/_3046.java renamed to src/main/java/com/fishercoder/solutions/fourththousand/_3046.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fishercoder.solutions;
1+
package com.fishercoder.solutions.fourththousand;
22

33
import java.util.HashMap;
44
import java.util.Map;

src/main/java/com/fishercoder/solutions/_3120.java renamed to src/main/java/com/fishercoder/solutions/fourththousand/_3120.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fishercoder.solutions;
1+
package com.fishercoder.solutions.fourththousand;
22

33
public class _3120 {
44
public static class Solution1 {

src/main/java/com/fishercoder/solutions/_3127.java renamed to src/main/java/com/fishercoder/solutions/fourththousand/_3127.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fishercoder.solutions;
1+
package com.fishercoder.solutions.fourththousand;
22

33
public class _3127 {
44
public static class Solution1 {

src/main/java/com/fishercoder/solutions/_3131.java renamed to src/main/java/com/fishercoder/solutions/fourththousand/_3131.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fishercoder.solutions;
1+
package com.fishercoder.solutions.fourththousand;
22

33
import java.util.Arrays;
44

src/main/java/com/fishercoder/solutions/_3157.java renamed to src/main/java/com/fishercoder/solutions/fourththousand/_3157.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fishercoder.solutions;
1+
package com.fishercoder.solutions.fourththousand;
22

33
import com.fishercoder.common.classes.TreeNode;
44

src/main/java/com/fishercoder/solutions/_3162.java renamed to src/main/java/com/fishercoder/solutions/fourththousand/_3162.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fishercoder.solutions;
1+
package com.fishercoder.solutions.fourththousand;
22

33
public class _3162 {
44
public static class Solution1 {

src/main/java/com/fishercoder/solutions/_3164.java renamed to src/main/java/com/fishercoder/solutions/fourththousand/_3164.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fishercoder.solutions;
1+
package com.fishercoder.solutions.fourththousand;
22

33
import java.util.HashMap;
44
import java.util.Map;

src/main/java/com/fishercoder/solutions/_3174.java renamed to src/main/java/com/fishercoder/solutions/fourththousand/_3174.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fishercoder.solutions;
1+
package com.fishercoder.solutions.fourththousand;
22

33
import java.util.Deque;
44
import java.util.LinkedList;

src/main/java/com/fishercoder/solutions/_3175.java renamed to src/main/java/com/fishercoder/solutions/fourththousand/_3175.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fishercoder.solutions;
1+
package com.fishercoder.solutions.fourththousand;
22

33
import java.util.Deque;
44
import java.util.LinkedList;

src/main/java/com/fishercoder/solutions/_3178.java renamed to src/main/java/com/fishercoder/solutions/fourththousand/_3178.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fishercoder.solutions;
1+
package com.fishercoder.solutions.fourththousand;
22

33
public class _3178 {
44
public static class Solution1 {

src/main/java/com/fishercoder/solutions/_3184.java renamed to src/main/java/com/fishercoder/solutions/fourththousand/_3184.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fishercoder.solutions;
1+
package com.fishercoder.solutions.fourththousand;
22

33
public class _3184 {
44
public static class Solution1 {

src/main/java/com/fishercoder/solutions/_3185.java renamed to src/main/java/com/fishercoder/solutions/fourththousand/_3185.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fishercoder.solutions;
1+
package com.fishercoder.solutions.fourththousand;
22

33
public class _3185 {
44
public static class Solution1 {

src/main/java/com/fishercoder/solutions/_3186.java renamed to src/main/java/com/fishercoder/solutions/fourththousand/_3186.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fishercoder.solutions;
1+
package com.fishercoder.solutions.fourththousand;
22

33
import java.util.ArrayList;
44
import java.util.List;

src/test/java/com/fishercoder/_3006Test.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.fishercoder;
22

3-
import com.fishercoder.solutions._3006;
3+
import com.fishercoder.solutions.fourththousand._3006;
44
import org.junit.BeforeClass;
55
import org.junit.Test;
66

src/test/java/com/fishercoder/_3038Test.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.fishercoder;
22

3-
import com.fishercoder.solutions._3038;
3+
import com.fishercoder.solutions.fourththousand._3038;
44
import org.junit.jupiter.api.BeforeEach;
55
import org.junit.jupiter.api.Test;
66

src/test/java/com/fishercoder/_3175Test.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.fishercoder;
22

3-
import com.fishercoder.solutions._3175;
3+
import com.fishercoder.solutions.fourththousand._3175;
44
import org.junit.jupiter.api.BeforeEach;
55
import org.junit.jupiter.api.Test;
66

src/test/java/com/fishercoder/_3178Test.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.fishercoder;
22

3-
import com.fishercoder.solutions._3178;
3+
import com.fishercoder.solutions.fourththousand._3178;
44
import org.junit.jupiter.api.BeforeEach;
55
import org.junit.jupiter.api.Test;
66

src/test/java/com/fishercoder/_3185Test.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.fishercoder;
22

3-
import com.fishercoder.solutions._3185;
3+
import com.fishercoder.solutions.fourththousand._3185;
44
import org.junit.jupiter.api.BeforeEach;
55
import org.junit.jupiter.api.Test;
66

src/test/java/com/fishercoder/_3186Test.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.fishercoder;
22

3-
import com.fishercoder.solutions._3186;
3+
import com.fishercoder.solutions.fourththousand._3186;
44
import org.junit.jupiter.api.BeforeEach;
55
import org.junit.jupiter.api.Test;
66

0 commit comments

Comments
 (0)