File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
lesson_11/arrays_java/arrays_app/src/main/java/com/codedifferently/lesson11 Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ public class Lesson11 {
9
9
* Provide the solution to LeetCode 1929 here:
10
10
* https://leetcode.com/problems/concatenation-of-array
11
11
*/
12
- public class Solution {
13
12
public int [] getConcatenation (int [] nums ) {
14
13
int n = nums .length ;
15
14
int [] ans = new int [2 * n ];
@@ -25,7 +24,6 @@ public int[] getConcatenation(int[] nums) {
25
24
* Provide the solution to LeetCode 2942 here:
26
25
* https://leetcode.com/problems/find-words-containing-character/
27
26
*/
28
- public class WorldFilter {
29
27
public List <Integer > findWordsContaining (String [] words , char x ) {
30
28
List <Integer > result = new ArrayList <>();
31
29
@@ -36,4 +34,5 @@ public List<Integer> findWordsContaining(String[] words, char x) {
36
34
}
37
35
38
36
return result ;
39
- }
37
+ }
38
+ }
You can’t perform that action at this time.
0 commit comments