본문 바로가기

CS/알고리즘

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

https://school.programmers.co.kr/learn/courses/30/lessons/12951

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

밖에 비가 많이 온다

 

평일은 매일 c++ 알고리즘 공부중

이번 문제는 lv.2이지만 toupper, isspace등 기본 문자열 함수를 연습하는 문제였다

isspace 사용하는게 오랜만이라 잠시 시간이 걸렸지만 원리는 비교적 쉬운 문제.

 

#include <string>
#include <vector>
#include <cctype>
using namespace std;

string solution(string s) {
    string answer = "";
    for (int i=0; i<s.length(); i++){
        if (i==0 ) s[i]=toupper(s[i]); //if it is the first letter
        if (isspace(s[i])!=0) s[i+1]=toupper(s[i+1]); //if the letter is ' '                  
        else s[i+1]=tolower(s[i+1]); //if the letter is not ' '
        
    }
    answer=s; //put s to the answer string
    return answer;
}

깃헙에 올릴거라 주석은 영어입니다

영문법은 대충 봐주시길