Skip to content

Commit 03d562f

Browse files
correct 1481
1 parent df2affe commit 03d562f

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
@@ -9,7 +9,7 @@ _If you like this project, please leave me a star._ ★
99
| # | Title | Solutions | Video | Difficulty | Tag
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|
12-
|5454|[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/_5454.java) | |Medium|Array, Sort|
12+
|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|
1313
|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|
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|

src/main/java/com/fishercoder/solutions/_5454.java renamed to src/main/java/com/fishercoder/solutions/_1481.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import java.util.LinkedHashMap;
55
import java.util.Map;
66

7-
public class _5454 {
7+
public class _1481 {
88
public static class Solution1 {
99
public int findLeastNumOfUniqueInts(int[] arr, int k) {
1010
Map<Integer, Integer> unSortedMap = new HashMap<>();

src/test/java/com/fishercoder/_5454Test.java renamed to src/test/java/com/fishercoder/_1481Test.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._5454;
3+
import com.fishercoder.solutions._1481;
44
import org.junit.BeforeClass;
55
import org.junit.Test;
66

77
import static junit.framework.TestCase.assertEquals;
88

9-
public class _5454Test {
10-
private static _5454.Solution1 solution1;
9+
public class _1481Test {
10+
private static _1481.Solution1 solution1;
1111
private static int[] arr;
1212

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

1818
@Test

0 commit comments

Comments
 (0)