Notice
Recent Posts
Recent Comments
250x250
목록이웃한 칸 (1)
Creative Code
이웃한 칸
#include #include #include #include using namespace std; int dh[4] = {0,1,-1,0}; // 세로로 이동할 방향 int dw[4] = {1,0,0,-1}; // 가로로 이동할 방향 int solution(vector board, int h, int w) { int answer = 0; // 이웃한 칸이 같은색깔인경우의 수 int n = board.size(); for (int i = 0; i = n || w_check = n) continue; ..
프로그래머스 코테 문제/LEVEL 1
2024. 4. 12. 18:11