Skip to content

Commit 92bbe49

Browse files
committed
Feat: updates first problem accidentally forgot ; in lines 16, 17
1 parent c31b5c1 commit 92bbe49

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
@@ -13,8 +13,8 @@ public int[] getConcatenation(int[] nums) {
1313
int n = nums.length;
1414
int ans[] = new int [2*n];
1515
for (int i = 0; i < nums.length; i++){
16-
ans[i] = nums[i]
17-
ans[i + n] = nums[i]
16+
ans[i] = nums[i];
17+
ans[i + n] = nums[i];
1818
}
1919
return ans;
2020
}

0 commit comments

Comments
 (0)