Skip to content

Commit 8a34402

Browse files
committed
feat: fix/gradle spotlessApply
1 parent cd61a61 commit 8a34402

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public int[] getConcatenation(int[] nums) {
2222
* Provide the solution to LeetCode 2942 here:
2323
* https://leetcode.com/problems/find-words-containing-character/
2424
*/
25-
class Solution {
25+
2626
public List<Integer> findWordsContaining(String[] words, char x) {
2727
List<Integer> indices = new ArrayList<>();
2828
for (int i = 0; i < words.length; i++) {
@@ -34,4 +34,4 @@ public List<Integer> findWordsContaining(String[] words, char x) {
3434
return indices;
3535
}
3636
}
37-
}
37+

0 commit comments

Comments
 (0)