Skip to content

Commit

Permalink
remove extra ()
Browse files Browse the repository at this point in the history
  • Loading branch information
zebalu committed Dec 20, 2023
1 parent ffb7377 commit f6b9f37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ private static long gcf(long a, long b) {
if (b == 0) {
return a;
} else {
return (gcf(b, a % b));
return gcf(b, a % b);
}
}

Expand Down

0 comments on commit f6b9f37

Please sign in to comment.