헝D의 일기장
[프로그래머스] 연속된 부분 수열의 합 java 풀이(LEVEL2)
코테풀이 2023. 5. 22. 22:50

https://school.programmers.co.kr/learn/courses/30/lessons/178870 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 나의풀이 class Solution { public int[] solution(int[] sequence, int k) { int[] answer = new int[2]; int[] sum= new int[sequence.length+1]; sum[0]=0; for(int i=0; i

[프로그래머스] 롤케이크 자르기 java풀이 (LEVEL2)
코테풀이 2023. 5. 20. 17:31

https://school.programmers.co.kr/learn/courses/30/lessons/132265 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 나의풀이 import java.util.*; class Solution { public int solution(int[] topping) { int answer = 0; Map s1 = new HashMap(); Map s2 = new HashMap(); s1.put(topping[0], 1); for(int i=1; i