We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74774a5 commit 8ed4d21Copy full SHA for 8ed4d21
1 file changed
박예진/10주차/260302.cpp
@@ -69,7 +69,6 @@ int main(){
69
memset(visited, 0, sizeof(visited));
70
for(int i = 0; i < N; i++){
71
for(int j = 0; j < N; j++){
72
- // 조건 제대로?
73
if (h < arr[i][j] && !visited[i][j]) {
74
bfs(i, j, h); // 안전영역 개수 세기
75
cnt++;
0 commit comments