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
- error
- mysql
- paramiko
- SSH
- JSON
- Docker
- LIST
- windows forms
- C#
- 컨테이너
- 프로그래머스
- Numpy
- 오류
- VS Code
- pytorch
- C++
- Python
- ubuntu
- Selenium
- 기타 연주
- YOLO
- pandas
- OpenCV
- Linux
- pip
- 핑거스타일
- label
- C
- 채보
- Visual Studio
Archives
- Today
- Total
목록이진 변환 반복하기 (1)
기계는 거짓말하지 않는다
[Programmers] 이진 변환 반복하기
프로그래머스 - 이진 변환 반복하기 문제 입니다. 문제 그대로 1인 문자 개수를 이진수로 변경하고 0인 문자를 계속 카운트 합니다. 이진수 문자열은 재귀함수를 사용했습니다. #include #include using namespace std; string binaryNumber(int n) { if(n < 2) return to_string(n); return binaryNumber(n / 2) + to_string(n % 2); } vector solution(string s) { vector answer; int zeroCnt = 0, tryCnt = 0, i = 0; int len = 0; while(s.length() != 1) { for(i = 0; i < s.length(); i++) { if..
Programming Test
2021. 4. 30. 16:01