728x90
복습을 위한 기록
내가 한거
class Solution {
public String solution(String s) {
int length = s.length();
int lengthHalf =length/2;
return length%2==1 ? s.substring(lengthHalf,lengthHalf+1)
:s.substring(lengthHalf-1,lengthHalf+1);
}
}
좋은 답:
class StringExercise{
String getMiddle(String word){
return word.substring((word.length()-1) / 2, word.length()/2 + 1);
}
출처 : https://programmers.co.kr/learn/courses/30/lessons/12903/solution_groups?language=java&type=all
728x90
'with my rubber duck > codingTest' 카테고리의 다른 글
[프로그래머스] K번째변수 풀어보기 (0) | 2022.06.03 |
---|---|
[프로그래머스] 수박수박수박수박수박수? (0) | 2022.06.02 |
백준 2442 자바 (0) | 2022.04.18 |
백준 2441 별 찍기 - 4 자바 (0) | 2022.04.17 |
백준 자바 별 찍기 - 3 (0) | 2022.04.15 |
댓글