가장 큰 정사각형 찾기1 [프로그래머스]연습문제 : 가장 큰 정사각형 찾기 (level 2)(c++) https://programmers.co.kr/learn/courses/30/lessons/12905 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr #include #include #include using namespace std; int solution(vector board) { int max_area = 0; int w = board[0].size(); int h = board.size(); // board의 양 변이 2 이하일 수도 있으므로, 전체를 탐색한다. for (int i = 0; i < h; ++i) { for (int j = 0; j .. 2020. 5. 14. 이전 1 다음