Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 5b6a82e

Browse files
refactor 1078
1 parent a9c5141 commit 5b6a82e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/main/java/com/fishercoder/solutions/_5083.java renamed to src/main/java/com/fishercoder/solutions/_1078.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* 1 <= first.length, second.length <= 10
2525
* first and second consist of lowercase English letters.
2626
*/
27-
public class _5083 {
27+
public class _1078 {
2828
public static class Solution1 {
2929
public String[] findOcurrences(String text, String first, String second) {
3030
String[] words = text.split(" ");

src/test/java/com/fishercoder/_5083Test.java renamed to src/test/java/com/fishercoder/_1078Test.java

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

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

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

9-
public class _5083Test {
10-
private static _5083.Solution1 solution1;
9+
public class _1078Test {
10+
private static _1078.Solution1 solution1;
1111

1212
@BeforeClass
1313
public static void setup() {
14-
solution1 = new _5083.Solution1();
14+
solution1 = new _1078.Solution1();
1515
}
1616

1717
@Test

0 commit comments

Comments
 (0)