long long으로 받은 자연수 뒤집어서 배열로 만들어서 출력
#include <string>
#include <vector>
using namespace std;
vector<int> solution(long long n) {
int temp;
vector<int> v;
while (n != 0) {
temp = n % 10;
v.push_back(temp);
n = n / 10;
}
return v;
}
https://programmers.co.kr/learn/courses/30/lessons/12932?language=cpp
'[알고리즘] 문제풀이 연습' 카테고리의 다른 글
[프로그래머스] 나누어 떨어지는 숫자 배열 오름차순 (0) | 2019.11.03 |
---|---|
[프로그래머스] 문자열 다루기 기본 level 1 (0) | 2019.11.03 |
[프로그래머스] 자릿수 더하기 level 1 (0) | 2019.11.03 |
[프로그래머스] 핸드폰번호 가리기 level 1 (0) | 2019.11.03 |
[C++] map 컨테이너 (0) | 2019.11.03 |