Make Unreal REAL.
article thumbnail
Level 2. JadenCase 문자열 만들기

 

 

#include <iostream>

using namespace std;

string solution(string s)
{
    char prev = ' ';
    
    for (char& cur : s)
        prev = cur = (prev == ' ' && isalpha(cur) ? ::toupper : ::tolower)(cur);

    return s;
}

'자료구조 & 알고리즘 > 프로그래머스' 카테고리의 다른 글

Level 2. 짝지어 제거하기  (0) 2023.03.26
Level 2. 영어 끝말잇기  (0) 2023.03.25
Level 2. 주차 요금 계산  (0) 2023.03.23
Level 2. 숫자 변환하기  (0) 2023.03.22
Level 2. 튜플  (0) 2023.03.21
profile

Make Unreal REAL.

@diesuki4

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!

검색 태그