We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fc6310 commit e15ebe4Copy full SHA for e15ebe4
src/test/java/com/fishercoder/_809Test.java
@@ -9,7 +9,6 @@
9
public class _809Test {
10
private static _809.Solution1 solution1;
11
private String[] words;
12
- private String S;
13
14
@BeforeClass
15
public static void setup() {
@@ -19,7 +18,6 @@ public static void setup() {
19
18
@Test
20
public void test1() {
21
words = new String[]{"hello", "hi", "helo"};
22
- S = "heeellooo";
23
- assertEquals(1, solution1.expressiveWords(S, words));
+ assertEquals(1, solution1.expressiveWords("heeellooo", words));
24
}
25
0 commit comments