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

Commit a9c5141

Browse files
refactor 1079
1 parent e45fca0 commit a9c5141

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/main/java/com/fishercoder/solutions/_5087.java renamed to src/main/java/com/fishercoder/solutions/_1079.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* 1. 1 <= tiles.length <= 7
2525
* 2. tiles consists of uppercase English letters.
2626
* */
27-
public class _5087 {
27+
public class _1079 {
2828
public static class Solution1 {
2929
public int numTilePossibilities(String tiles) {
3030
char[] chars = tiles.toCharArray();

src/test/java/com/fishercoder/_5087Test.java renamed to src/test/java/com/fishercoder/_1079Test.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._5087;
3+
import com.fishercoder.solutions._1079;
44
import org.junit.BeforeClass;
55
import org.junit.Test;
66

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

9-
public class _5087Test {
10-
private static _5087.Solution1 solution1;
9+
public class _1079Test {
10+
private static _1079.Solution1 solution1;
1111

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

1717
@Test

0 commit comments

Comments
 (0)