[프로그래머스] 이진 변환 반복하기
2021. 1. 19. 23:51
문제 링크 programmers.co.kr/learn/courses/30/lessons/70129 코딩테스트 연습 - 이진 변환 반복하기 programmers.co.kr C++ 풀이 #include #include using namespace std; int run_count; int zero_count; string delete_zero(string s) { int zero_count_temp = 0; for (int i = 0; i < s.length(); i++) { if (s[i] == '0') zero_count_temp++; } zero_count += zero_count_temp; string return_string(s.length() - zero_count_temp, '1'); retur..