Skip to content

Commit 75e4e32

Browse files
correct 1480
1 parent 03d562f commit 75e4e32

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ _If you like this project, please leave me a star._ ★
1010
|-----|----------------|---------------|--------|-------------|-------------
1111
|1486|[XOR Operation in an Array](https://leetcode.com/problems/xor-operation-in-an-array/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_1486.java) | |Medium|Array, Bit Manipulation|
1212
|1481|[Least Number of Unique Integers after K Removals](https://leetcode.com/problems/least-number-of-unique-integers-after-k-removals/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_1481.java) | |Medium|Array, Sort|
13-
|5453|[Running Sum of 1d Array](https://leetcode.com/problems/running-sum-of-1d-array/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_5453.java) | |Easy|Array|
13+
|1480|[Running Sum of 1d Array](https://leetcode.com/problems/running-sum-of-1d-array/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_1480.java) | |Easy|Array|
1414
|1476|[Subrectangle Queries](https://leetcode.com/problems/subrectangle-queries/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_1476.java) | |Medium|Array|
1515
|1475|[Final Prices With a Special Discount in a Shop](https://leetcode.com/problems/final-prices-with-a-special-discount-in-a-shop/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_1475.java) | |Easy|Array|
1616
|1471|[The k Strongest Values in an Array](https://leetcode.com/problems/the-k-strongest-values-in-an-array/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_1471.java) | |Medium|Array, Sort|

src/main/java/com/fishercoder/solutions/_5453.java renamed to src/main/java/com/fishercoder/solutions/_1480.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.fishercoder.solutions;
22

3-
public class _5453 {
3+
public class _1480 {
44
public static class Solution1 {
55
public int[] runningSum(int[] nums) {
66
int sum = 0;

src/test/java/com/fishercoder/_5453Test.java renamed to src/test/java/com/fishercoder/_1480Test.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
package com.fishercoder;
22

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

77
import static org.junit.Assert.assertArrayEquals;
88

9-
public class _5453Test {
10-
private static _5453.Solution1 solution1;
9+
public class _1480Test {
10+
private static _1480.Solution1 solution1;
1111
private static int[] nums;
1212

1313
@BeforeClass
1414
public static void setup() {
15-
solution1 = new _5453.Solution1();
15+
solution1 = new _1480.Solution1();
1616
}
1717

1818
@Test

0 commit comments

Comments
 (0)