File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
main/java/com/fishercoder/solutions
test/java/com/fishercoder Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 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 ();
Original file line number Diff line number Diff line change 11package com .fishercoder ;
22
3- import com .fishercoder .solutions ._5087 ;
3+ import com .fishercoder .solutions ._1079 ;
44import org .junit .BeforeClass ;
55import org .junit .Test ;
66
77import 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
You can’t perform that action at this time.
0 commit comments