1. 문제에 대한 이해
- 우리가 풀어야 할 문제는 무엇인가?
- 나이트가 이동할 수 있는 경우의 수를 구하라 - 주어진 자료는 무엇인가?
- location = 현재 나이트가 위치한 곳의 좌표
3. 실행
- 풀이 계획을 실행하고, 각 단계가 올바른지 점검하라.
const solution = (locate) => {
const location = {
'a': 1,
'b': 2,
'c': 3,
'd': 4,
'e': 5,
'f': 6,
'g': 7,
'h': 8
}
const findLocation = locate.split('');
const currentLocation = [Object.getOwnPropertyDescriptor(location, findLocation[0]).value, Number(findLocation[1])];
let count = 0;
//수평으로 두칸 이동 후에 수직으로 한칸 이동
if (currentLocation[1] + 2 > 1 && currentLocation[1] + 2 < 8) {
if (currentLocation[0] + 1 > 1 && currentLocation[0] + 1 < 8) {
count++;
}
if (currentLocation[0] - 1 > 1 && currentLocation[0] - 1 < 8) {
count++;
}
}
if (currentLocation[1] - 2 > 1 && currentLocation[1] - 2 < 8) {
if (currentLocation[0] + 1 > 1 && currentLocation[0] + 1 < 8) {
count++;
}
if (currentLocation[0] - 1 > 1 && currentLocation[0] - 1 < 8) {
count++;
}
}
//수직으로 두칸 이동 후에 수평으로 한칸이동
if (currentLocation[0] + 2 > 1 && currentLocation[0] + 2 < 8) {
if (currentLocation[1] + 1 > 1 && currentLocation[1] + 1 < 8) {
count++;
}
if (currentLocation[1] - 1 > 1 && currentLocation[1] - 1 < 8) {
count++;
}
}
if (currentLocation[0] - 2 > 1 && currentLocation[0] - 2 < 8) {
if (currentLocation[1] + 1 > 1 && currentLocation[1] + 1 < 8) {
count++;
}
if (currentLocation[1] - 1 > 1 || currentLocation[1] - 1 < 8) {
count++;
}
}
return count
};
test('coordinate', () => {
expect(solution('a1')).toEqual(2);
});
'코테연습' 카테고리의 다른 글
98. 이것이 코딩 테스트다 6장 : 성적이 낮은 순서로 학생 출력하기 Javascript (0) | 2022.09.01 |
---|---|
97. 이것이 코딩 테스트다 6장 : 위에서 아래로 Javascript (0) | 2022.09.01 |
94. 이것이 코딩 테스트다 4장 : 상하좌우 Javascript (0) | 2022.08.30 |
93. 배열에 중복된 요소가 있는지 확인하기 Javascript (0) | 2022.08.25 |
92. 배열에서 각 요소 개수 세기 Javascript (0) | 2022.08.24 |
댓글