Skip to content

Commit dff5d0b

Browse files
committed
Updaed lesson11.java
1 parent 35bb237 commit dff5d0b

File tree

1 file changed

+2
-3
lines changed
  • lesson_11/arrays_java/arrays_app/src/main/java/com/codedifferently/lesson11

1 file changed

+2
-3
lines changed

lesson_11/arrays_java/arrays_app/src/main/java/com/codedifferently/lesson11/Lesson11.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ public class Lesson11 {
99
* Provide the solution to LeetCode 1929 here:
1010
* https://leetcode.com/problems/concatenation-of-array
1111
*/
12-
public class Solution {
1312
public int[] getConcatenation(int[] nums) {
1413
int n = nums.length;
1514
int[] ans = new int[2 * n];
@@ -25,7 +24,6 @@ public int[] getConcatenation(int[] nums) {
2524
* Provide the solution to LeetCode 2942 here:
2625
* https://leetcode.com/problems/find-words-containing-character/
2726
*/
28-
public class WorldFilter {
2927
public List<Integer> findWordsContaining(String[] words, char x) {
3028
List<Integer> result = new ArrayList<>();
3129

@@ -36,4 +34,5 @@ public List<Integer> findWordsContaining(String[] words, char x) {
3634
}
3735

3836
return result;
39-
}
37+
}
38+
}

0 commit comments

Comments
 (0)