사생활 보호 설정
https://gamjia.tistory.com
Updated News
Mini Rooms
답글수 [0]
What Friends Say
한마디로 표현해봐~
1촌평 관리
12930번 이상한 문자 만들기
GamJia 2023. 3. 21. 14:25
코딩테스트 연습 - Level 1 - 이상한 문자 만들기
https://programmers.co.kr/learn/courses/30/lessons/12930
#include <string> #include <vector> using namespace std; string solution(string s) { string answer = ""; int index=0; for(int i=0;i<s.size();i++) { if(s[i]==' ') { index=0; continue; } if(index%2==1) { if('A'<=s[i]&&s[i]<='Z') { s[i]+=32; } } else { if('a'<=s[i]&&s[i]<='z') { s[i]-=32; } } index++; } return s; }
🔊공백 주의