https://school.programmers.co.kr/learn/courses/30/lessons/87694 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr소스코드배열을 2배해줘야 하는 게 핵심인 것 같다.배열을 그냥 했을 경우 1이 겹치는 문제가 있어서 해결하기 어려움이 있다.소스코드#include #include #include #include class Pos{public: Pos(int y, int x) : Y(y), X(x) { }public: int Y; int X;};bool CanGo(int minX, int minY, int maxX, i..