Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 프로그래머스
- mysql
- VS Code
- YOLO
- Visual Studio
- 오류
- ubuntu
- error
- windows forms
- 채보
- pandas
- C
- Linux
- paramiko
- pytorch
- C++
- Selenium
- 기타 연주
- JSON
- C#
- 핑거스타일
- OpenCV
- Docker
- Python
- Numpy
- pip
- LIST
- 명령어
- label
- SSH
Archives
- Today
- Total
기계는 거짓말하지 않는다
[Programmers] 이진 변환 반복하기 본문
프로그래머스 - 이진 변환 반복하기 문제 입니다.
문제 그대로 1인 문자 개수를 이진수로 변경하고 0인 문자를 계속 카운트 합니다.
이진수 문자열은 재귀함수를 사용했습니다.
#include <string>
#include <vector>
using namespace std;
string binaryNumber(int n) {
if(n < 2) return to_string(n);
return binaryNumber(n / 2) + to_string(n % 2);
}
vector<int> solution(string s) {
vector<int> answer;
int zeroCnt = 0, tryCnt = 0, i = 0;
int len = 0;
while(s.length() != 1) {
for(i = 0; i < s.length(); i++) {
if(s[i] == '1') len++; // 1인 문자의 개수
else zeroCnt++;
}
s = binaryNumber(len); // 1인 문자 개수를 이진수 문자열로 변환
len = 0;
tryCnt++; // 시행 횟수
}
answer.push_back(tryCnt);
answer.push_back(zeroCnt);
return answer;
}
'Programming Test' 카테고리의 다른 글
[Programmers] 올바른 괄호 (0) | 2021.05.03 |
---|---|
[Programmers] 등굣길 (0) | 2021.05.02 |
[Programmers] 캐시 (0) | 2021.04.30 |
[Programmers] 124 나라의 숫자 (0) | 2021.04.29 |
[Programmers] 튜플 (0) | 2021.04.27 |
Comments