티스토리 뷰
문제 출처 - https://programmers.co.kr/learn/courses/30/lessons/12899
#include <string>
#include <vector>
using namespace std;
string solution(int n) {
string answer = "";
while(n != 0) {
if(n % 3 == 0) {
answer.insert(0, "4"); // 맨 앞에 문자열 삽입
n = n / 3 - 1;
}
else {
answer.insert(0, to_string(n % 3));
n = n / 3;
}
}
return answer;
}
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[C++]프로그래머스 - 같은 숫자는 싫어(level1) (0) | 2019.12.27 |
---|---|
[C++]프로그래머스 - 단어 변환(level3) (0) | 2019.12.06 |
[C++]프로그래머스 - 완주하지 못한 선수(level1) (0) | 2019.12.06 |
[C++]프로그래머스 - 올바른 괄호의 갯수(level4) (0) | 2019.11.30 |
[C++]프로그래머스 - 디스크 컨트롤러(level3) (0) | 2019.11.30 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 해시
- 문자열처리
- 프로그래머스
- left join
- SW Expert
- 코딩테스트
- 구현
- 괄호
- BOJ
- 재귀
- C++
- 2020 KAKAO BLIND RECRUITMENT
- SWExpert
- hash
- dictionary
- 힙
- combination
- programmers
- 딕셔너리
- Permutation
- 순열
- 파이썬
- 백준
- 정렬
- 스택
- 완전탐색
- 우선순위큐
- 문자열
- Python
- 2019 Kakao Blind Recruitment
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함