- 학습 관련 질문을 남겨주세요. 상세히 작성하면 더 좋아요!
- 먼저 유사한 질문이 있었는지 검색해보세요.
- 서로 예의를 지키며 존중하는 문화를 만들어가요.
- 잠깐! 인프런 서비스 운영 관련 문의는 1:1 문의하기를 이용해주세요
<html>
<head>
<meta charset="UTF-8">
<title>출력결과</title>
</head>
<body>
<script>
function solution(arr){
let answer=0;
let n = arr[0].length;
for(let i = 0; i < n; i++){
for(let j = 0; j < n; j++){
if(arr[i][j] > arr[i][j+1]
&& arr[i][j] > arr[i+1][j]
&& arr[i][j] > arr[i][j-1]
&& arr[i][j] > arr[i-1][j]
){
answer++;
}
}
}
return answer;
}
let arr=[[0, 0, 0, 0, 0 ,0, 0],
[0, 5, 3, 7, 2, 3, 0],
[0, 3, 7, 1, 6, 1, 0],
[0, 7, 2, 5, 3, 4, 0],
[0, 4, 3, 6, 4, 1, 0],
[0, 8, 7, 3, 5, 2, 0],
[0, 0, 0, 0, 0, 0, 0]];
console.log(solution(arr));
</script>
</body>
</html>