본문 바로가기
  • Jetpack 알아보기
프로그래머스 - JAVA/Level 2

[JAVA] 프로그래머스 Lv.2 : JadenCase 문자열 만들기

by 새우버거♬ 2021. 6. 7.

 

예제:

 

s return
"3people unFollowed me" "3people Unfollowed Me"
"for the last week" "For The Last Week"

Solution #1

class Solution {
    public String solution(String s) {
        StringBuilder answer = new StringBuilder();

        boolean isBlank = true;
        s = s.toLowerCase();

        for (char c : s.toCharArray()) {
            if (c == ' ') {
                isBlank = true;
                answer.append(c);
            } else if (isBlank && (c >= 'a' && c <= 'z')) {
                answer.append((char)(c - 32));
                isBlank = false;
            } else {
                answer.append(c);
                isBlank = false;
            }
        }
        return answer.toString();
    }
}

 

Result #1

 


 

More Algorithm!

 

👇👇

 

github.com/ggujangi/ggu.programmers

 

ggujangi/ggu.programmers

프로그래머스 알고리즘, JAVA. Contribute to ggujangi/ggu.programmers development by creating an account on GitHub.

github.com

 

 

 

출처 : 프로그래머스