Skip to content

Commit 97473ef

Browse files
rename 1st to first to follow naming convention
1 parent 43cd666 commit 97473ef

File tree

1,404 files changed

+2204
-2225
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,404 files changed

+2204
-2225
lines changed

paginated_contents/algorithms/1st_thousand/README.md

+800-800

src/main/java/com/fishercoder/solutions/_1st_thousand/_1.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_1.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_10.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_10.java

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

33
public class _10 {
44

src/main/java/com/fishercoder/solutions/_1st_thousand/_100.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_100.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_101.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_101.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_102.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_102.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_103.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_103.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_104.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_104.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_105.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_105.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_106.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_106.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_107.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_107.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_108.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_108.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_109.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_109.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_11.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_11.java

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

33
public class _11 {
44
public static class Solution1 {

src/main/java/com/fishercoder/solutions/_1st_thousand/_110.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_110.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_111.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_111.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_112.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_112.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_113.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_113.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_114.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_114.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_115.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_115.java

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

33
public class _115 {
44
public static class Solution1 {

src/main/java/com/fishercoder/solutions/_1st_thousand/_116.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_116.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_117.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_117.java

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

33
public class _117 {
44

src/main/java/com/fishercoder/solutions/_1st_thousand/_118.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_118.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_119.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_119.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_12.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_12.java

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

33
public class _12 {
44

src/main/java/com/fishercoder/solutions/_1st_thousand/_120.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_120.java

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

33
import java.util.List;
44

src/main/java/com/fishercoder/solutions/_1st_thousand/_121.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_121.java

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

33
public class _121 {
44

src/main/java/com/fishercoder/solutions/_1st_thousand/_122.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_122.java

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

33
public class _122 {
44
public static class Solution1 {

src/main/java/com/fishercoder/solutions/_1st_thousand/_123.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_123.java

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

33
public class _123 {
44

src/main/java/com/fishercoder/solutions/_1st_thousand/_124.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_124.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_125.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_125.java

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

33
public class _125 {
44
public static class Solution1 {

src/main/java/com/fishercoder/solutions/_1st_thousand/_126.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_126.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_127.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_127.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_128.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_128.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_129.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_129.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_13.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_13.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_130.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_130.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_131.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_131.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_132.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_132.java

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

33
/**
44
* 132. Palindrome Partitioning II

src/main/java/com/fishercoder/solutions/_1st_thousand/_133.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_133.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_134.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_134.java

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

33
/**
44
* 134. Gas Station

src/main/java/com/fishercoder/solutions/_1st_thousand/_135.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_135.java

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

33
/**
44
* 135. Candy

src/main/java/com/fishercoder/solutions/_1st_thousand/_136.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_136.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
package com.fishercoder.solutions._1st_thousand;
1+
package com.fishercoder.solutions.first_thousand;
22

33
import java.util.HashSet;
4-
import java.util.Iterator;
54
import java.util.Set;
65

76
public class _136 {

src/main/java/com/fishercoder/solutions/_1st_thousand/_137.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_137.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_138.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_138.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_139.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_139.java

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

33
import java.util.List;
44

src/main/java/com/fishercoder/solutions/_1st_thousand/_14.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_14.java

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

33
public class _14 {
44

src/main/java/com/fishercoder/solutions/_1st_thousand/_140.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_140.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_141.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_141.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_142.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_142.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_143.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_143.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_144.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_144.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
package com.fishercoder.solutions._1st_thousand;
1+
package com.fishercoder.solutions.first_thousand;
22

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

5-
import java.util.ArrayDeque;
65
import java.util.ArrayList;
7-
import java.util.Deque;
86
import java.util.List;
97
import java.util.Stack;
108

src/main/java/com/fishercoder/solutions/_1st_thousand/_145.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_145.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_146.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_146.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_147.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_147.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_148.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_148.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_149.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_149.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_15.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_15.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_150.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_150.java

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

33
import java.util.Arrays;
44
import java.util.HashSet;

src/main/java/com/fishercoder/solutions/_1st_thousand/_151.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_151.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_152.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_152.java

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

33
public class _152 {
44
public static class Solution1 {

src/main/java/com/fishercoder/solutions/_1st_thousand/_153.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_153.java

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

33
public class _153 {
44
public static class Solution1 {

src/main/java/com/fishercoder/solutions/_1st_thousand/_154.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_154.java

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

33
public class _154 {
44
public static class Solution1 {

src/main/java/com/fishercoder/solutions/_1st_thousand/_155.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_155.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_156.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_156.java

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

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

src/main/java/com/fishercoder/solutions/_1st_thousand/_157.java renamed to src/main/java/com/fishercoder/solutions/first_thousand/_157.java

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

33
public class _157 {
44
public static class Solution1 {

0 commit comments

Comments
 (0)