[Java] 메모장 - COS Pro 1급 모의고사 프로그래머스코딩테스트/프로그래머스2023. 4. 17. 08:38
Table of Contents
728x90
728x90
https://school.programmers.co.kr/learn/courses/11132/lessons/71157
풀이
단순한 문제
words 배열의 반복문을 통해 검증하면 끝... 설명이 딱히 필요없음
public int solution(int K, String[] words) {
if(words.length==1) return 1;
int answer = 1;
int size = 0;
for(int i=0; i<words.length; i++){
if(size + words[i].length() > K){
answer++;
size=0;
}
size += words[i].length()+1;
}
return answer;
}
728x90
300x250
@mag1c :: 꾸준히 재밌게
2023.04 ~ 백엔드 개발자의 기록
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!