Skip to content

Commit

Permalink
✔️ Assignment25
Browse files Browse the repository at this point in the history
  • Loading branch information
Bunlong committed Jul 25, 2021
1 parent 87c8b44 commit 7bb1bcc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
public class Assignment27 {
public class Assignment25 {
public static void main(String[] args) {
int result = largestAdjacentSum(new int[]{1, 2, 3, 4});
System.out.println(result);
Expand Down
2 changes: 1 addition & 1 deletion Assignments/Assignment25/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The function signature is `int largestAdjacentSum(int[] a)`
### Solution

```java
public class Assignment27 {
public class Assignment25 {
public static void main(String[] args) {
int result = largestAdjacentSum(new int[]{1, 2, 3, 4});
System.out.println(result);
Expand Down

0 comments on commit 7bb1bcc

Please sign in to comment.