Skip to content

Commit 958992a

Browse files
teresachenecfishercoder1534
authored andcommitted
Renamed p1013 to 1010 (#54)
1 parent 9357666 commit 958992a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/main/java/com/fishercoder/solutions/_1013.java renamed to src/main/java/com/fishercoder/solutions/_1010.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import java.util.Map;
55

66
/**
7-
* 1013. Pairs of Songs With Total Durations Divisible by 60
7+
* 1010. Pairs of Songs With Total Durations Divisible by 60
88
*
99
* In a list of songs, the i-th song has a duration of time[i] seconds.
1010
*
@@ -29,7 +29,7 @@
2929
* 1 <= time.length <= 60000
3030
* 1 <= time[i] <= 500
3131
* */
32-
public class _1013 {
32+
public class _1010 {
3333
public static class Solution1 {
3434
/**Credit: https://leetcode.com/problems/pairs-of-songs-with-total-durations-divisible-by-60/discuss/256726/Java-O(n)-code-w-comment-similar-to-Two-Sum
3535
*

src/test/java/com/fishercoder/_1013Test.java renamed to src/test/java/com/fishercoder/_1010Test.java

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

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

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

9-
public class _1013Test {
10-
private static _1013.Solution1 solution1;
9+
public class _1010Test {
10+
private static _1010.Solution1 solution1;
1111
private static int[] time;
1212

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

1818
@Test

0 commit comments

Comments
 (0)