728x90
반응형
문제
코드
#include <bits/stdc++.h>
using namespace std;
vector<int> solution(string my_string) {
vector<int> answer(52,0);
for(const char c : my_string)
{
if((int)c <= (int)'Z')
{
answer[(int)(c-65)]++;
}
else if((int)c >= (int)'a')
{
answer[(int)(c-71)]++;
}
}
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 글자 지우기 (0) | 2023.11.07 |
---|---|
[프로그래머스/C++] Lv.0 배열 만들기 1 (0) | 2023.11.06 |
[프로그래머스/C++] Lv.0 qr code (0) | 2023.11.05 |
[프로그래머스/C++] Lv.0 세로 읽기 (0) | 2023.11.05 |
[프로그래머스/C++] Lv.0 접두사인지 확인하기 (0) | 2023.11.03 |