Skip to content

Commit 2b3ea12

Browse files
committed
fixes
1 parent e1a1fb4 commit 2b3ea12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/dynamicprogramming/LongestArithmeticSubsequence.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static int getLongestArithmeticSubsequenceLength(int[] nums) {
2727
return 0;
2828
}
2929

30-
if (nums.length == 1){
30+
if (nums.length == 1) {
3131
return 1;
3232
}
3333

0 commit comments

Comments
 (0)