Skip to content

Commit

Permalink
update post
Browse files Browse the repository at this point in the history
  • Loading branch information
sikutisa committed May 9, 2024
1 parent 5d468f4 commit 735d37b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion _posts/2024-03-28-45.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ public class Example {
for(int i = 0; i < strArr.length; ++i) {
intArr[i] = Integer.parseInt(strArr[i].trim());
}

return Arrays.stream(intArr);
})
.forEach(System.out::println);
}
Expand Down Expand Up @@ -221,4 +223,4 @@ public class Example {
.noneMatch(i -> i % 3 == 0);
}
}
```
```

0 comments on commit 735d37b

Please sign in to comment.