[Java] 가장 가까운 같은 글자 - Lv1 프로그래머스코딩테스트/프로그래머스2023. 3. 5. 14:33
Table of Contents
728x90
728x90
https://school.programmers.co.kr/learn/courses/30/lessons/142086
풀이
단순 String 메서드 활용
class Solution {
public int[] solution(String s) {
int[] answer = new int[s.length()];
answer[0] = -1;
for(int i=1; i<s.length(); i++) {
if(s.substring(0, i).contains(String.valueOf(s.charAt(i)))) {
answer[i] = i - s.substring(0, i).lastIndexOf(s.charAt(i));
}
else {
answer[i] = -1;
}
}
return answer;
}
}
728x90
300x250
@mag1c :: 꾸준히 재밌게
2023.04 ~ 백엔드 개발자의 기록
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!