프로그래머스 알고리즘/Java1 [프로그래머스] 삼각 달팽이 - Java class Solution { public int[] solution(int n) { int[] answer = {}; int x = 0; int y = 0; int cnt = 1; int phase = 0; long[][] arr = new long[n][n]; arr[y][x] = cnt++; while (true) { // 아래로 이동 while (y + 1 1 && y > 1) { if (arr[y - 1][x - 1] == 0) { y--; .. 2025. 1. 15. 이전 1 다음