728x90
반응형
문제
코드
#include <bits/stdc++.h>
using namespace std;
vector<int> solution(int l, int r) {
vector<int> answer;
for(int i = l; i<=r; ++i)
{
bool zeroOrfive =true;
string temp = to_string(i);
for(char c : temp)
{
if(c != '0' && c != '5')
{
zeroOrfive =false;
break;
}
}
if(zeroOrfive)
{
answer.emplace_back(i);
}
}
if(answer.empty())
{
answer.emplace_back(-1);
}
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 9로 나눈 나머지 (0) | 2023.10.26 |
---|---|
[프로그래머스/C++] Lv.0 글자 이어 붙여 문자열 만들기 (0) | 2023.10.25 |
[프로그래머스/C++] Lv.0 카운트 업 (0) | 2023.10.24 |
[프로그래머스/C++] Lv.0 수열과 구간 쿼리 3 (0) | 2023.10.20 |
[프로그래머스/C++] Lv.0 수 조작하기 2 (0) | 2023.10.20 |