코딩공부/프로그래머스

※[프로그래머스]Lv.2 삼각 달팽이C# (나머지값으로 방향구하기)

usingsystem 2023. 7. 26. 18:04
728x90

https://school.programmers.co.kr/learn/courses/30/lessons/68645

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

소스코드

using System;
using System.Collections.Generic;
public class Solution
{
    public int[] solution(int n)
    {
        List<int> answer = new List<int>();

        int[,] board = new int[n, n];

        int num = 1;
        int y = -1;
        int x = 0;
        for (int i = 0; i < n; i++)
        {
            for (int j = i; j < n; j++)
            {
                if (i % 3 == 0)
                    y++;
                else if (i % 3 == 1)
                    x++;
                else if (i % 3 == 2)
                {
                    x--;
                    y--;
                }
                board[y, x] = num++;
            }
        }
        for (int i = 0; i < n; i++)
        {
            for (int j = 0; j < n; j++)
            {
                if (board[i, j] == 0)
                    break;
                answer.Add(board[i, j]);
            }
        }

        return answer.ToArray();
    }
}
728x90