-
11. 주식 가격코딩 테스트/Level 2 2020. 7. 25. 22:39반응형
https://programmers.co.kr/learn/courses/30/lessons/42584
난이도가 높지 않습니다.
공개된 지 얼마되지 않아서 푼 사람이 적은 것 같습니다.파이썬
def solution(prices): a = [] for i in range(len(prices)): check = 0 for j in range(i, len(prices)-1): if prices[i] <= prices[j] : check +=1 else: break a.append(check) return a
자바
class Solution { public int[] solution(int[] prices) { int[] answer = new int[prices.length]; for (int i = 0; i < prices.length; i++) { for (int j = i; j < prices.length - 1 & prices[i] <= prices[j]; j++) { answer[i]++; } } return answer; } }
for 문 안에 조건문을 우겨 넣으면 무려 3줄이나 줄일 수 있습니다만...C#
public class Solution { public int[] solution(int[] prices) { int[] answer = new int[prices.Length]; for (int i = 0; i < prices.Length; i++) { for (int j = i; j < prices.Length - 1 & prices[i] <= prices[j]; j++) { answer[i]++; } } return answer; } }
반응형