728x90
https://school.programmers.co.kr/learn/courses/30/lessons/42584
소스코드
using System;
using System.Collections.Generic;
public class Solution
{
public int[] solution(int[] prices)
{
List<int> answer = new List<int>();
for (int i = 0; i < prices.Length; i++)
{
int price = prices[i];
int second = 0;
for (int j = i + 1; j < prices.Length; j++)
{
second++;
if (price > prices[j])
break;
}
answer.Add(second);
}
return answer.ToArray();
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.2 영어 끝말잇기 C# (0) | 2023.08.02 |
---|---|
[프로그래머스]Lv.2 다리를 지나는 트럭C# (0) | 2023.08.02 |
[프로그래머스]Lv.2 기능개발C# (0) | 2023.08.01 |
※[프로그래머스]Lv.2 가장 큰 수C#(문자열 CompareTo 정렬, 시간복잡도 오류) (0) | 2023.08.01 |
[프로그래머스]Lv.2 프로세스C# (0) | 2023.08.01 |