-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.java
26 lines (26 loc) · 893 Bytes
/
Solution.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
class Solution {
public int numRookCaptures(char[][] board) {
int ans = 0;
int[] dirs = {-1, 0, 1, 0, -1};
for (int i = 0; i < 8; ++i) {
for (int j = 0; j < 8; ++j) {
if (board[i][j] == 'R') {
for (int k = 0; k < 4; ++k) {
int x = i, y = j;
int a = dirs[k], b = dirs[k + 1];
while (x + a >= 0 && x + a < 8 && y + b >= 0 && y + b < 8
&& board[x + a][y + b] != 'B') {
x += a;
y += b;
if (board[x][y] == 'p') {
++ans;
break;
}
}
}
}
}
}
return ans;
}
}