728x90
반응형
문제 : CamelCase 해커랭크
https://www.hackerrank.com/challenges/camelcase/problem
언어 : C++
난이도: easy
// Complete the camelcase function below.
int camelcase(string s) {
int wordCount = 1;
for (int i = 0; i < s.length(); i++)
{
if (s.at(i) >= 'A' && s.at(i) <= 'Z')
{
wordCount++;
}
}
return wordCount;
}
참고
728x90
반응형
'개발 > 코딩' 카테고리의 다른 글
재귀(Recusion) 알고리즘 사용 예 (1) | 2020.07.10 |
---|---|
해커랭크(HackerRank) - Strong Password / C++ (0) | 2020.06.30 |
해커랭크(HackerRank) - Drawing Book / C++ (0) | 2020.06.30 |
해커랭크(HackerRank) - Climbing the Leaderboard / C++ (0) | 2020.06.29 |
해커랭크(HackerRank) - Bon Appétit / C++ (0) | 2020.06.26 |
댓글