본문 바로가기
코테연습

96. 이것이 코딩 테스트다 4장 : 왕실의 나이트 Javascript

by hxunz 2022. 8. 30.

 

 

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);
});

 

댓글