mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-22 19:59:09 +08:00
Refactor Code Style (#4151)
This commit is contained in:
@ -52,7 +52,7 @@ public class BoardPath {
|
||||
return count;
|
||||
}
|
||||
|
||||
public static int bpRS(int curr, int end, int strg[]) {
|
||||
public static int bpRS(int curr, int end, int[] strg) {
|
||||
if (curr == end) {
|
||||
return 1;
|
||||
} else if (curr > end) {
|
||||
|
Reference in New Issue
Block a user