programmers.co.kr/learn/courses/30/lessons/12932
자연수 n을 뒤집어 각 자리 숫자를 원소로 가지는 배열 형태로 리턴해주세요. 예를들어 n이 12345이면 [5,4,3,2,1]을 리턴합니다.제한 조건
- n은 10,000,000,000이하인 자연수입니다.
입출력 예
nreturn
12345 | [5,4,3,2,1] |
#include <string>
#include <vector>
#include <iostream>
#include <string>
#include <cstring>
using namespace std;
vector<int> solution(long long n) {
vector<int> answer;
string num = to_string(n);
for(int i = num.size() - 1; i >= 0; i--){
answer.push_back(num[i] - '0');
}
return answer;
}
#include <string>
#include <vector>
using namespace std;
vector<int> solution(long long n) {
vector<int> answer;
while(n){
answer.push_back(n%10);
n/=10;
}
return answer;
}
'프로그래머스 > 1 단계' 카테고리의 다른 글
[ 프로그래머스 1 단계] 정수 제곱근 판별 (0) | 2021.05.16 |
---|---|
[ 프로그래머스 1 단계 ] 문자열 내 마음대로 정렬하기 (0) | 2021.05.15 |
[ 프로그래머스 1 단계 ] 직사각형 별 찍기 (0) | 2021.05.11 |
[ 프로그래머스 1 단계 ] x만큼 간격이 있는 n개의 숫자 (0) | 2021.05.10 |
[ 프로그래머스 1 단계 ] 핸드폰 번호 가리기 (0) | 2021.05.09 |