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 {
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+ }
You can’t perform that action at this time.
0 commit comments