https://school.programmers.co.kr/learn/courses/30/lessons/12951
밖에 비가 많이 온다
평일은 매일 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;
}
깃헙에 올릴거라 주석은 영어입니다
영문법은 대충 봐주시길
'CS > 알고리즘' 카테고리의 다른 글
백준 20125번 파이썬 : 쿠키의 신체 측정 (0) | 2024.07.04 |
---|---|
[파이썬] 백준- 1927번 최소 힙 (0) | 2024.02.02 |
[c++][프로그래머스] 예산_Lv.1 (0) | 2023.08.21 |
[c++]프로그래머스 숫자 문자열과 영단어 (0) | 2023.08.17 |
[c++][프로그래머스] K번째 수 [성공] (0) | 2023.08.15 |