다희의 코딩 성장일기
[프로그래머스] level2. 신규 아이디 추천 (자바 JAVA) 본문
[ 문제 ] [프로그래머스] level2. 신규 아이디 추천 (자바 JAVA)
문제 링크 : https://programmers.co.kr/learn/courses/30/lessons/70129
# 접근 방법 및 풀이
- 코드참조
# 주의할 점
- 없음
JAVA 코드
class Solution {
public int[] solution(String s) {
int[] answer = new int[2];
while (!s.equals("1")) {
int size = s.length();
s = s.replaceAll("0", "");
int newSize = s.length();
answer[1] += size - newSize;
s = Integer.toString(newSize, 2);
answer[0]++;
}
return answer;
}
}
REVIEW
'Algorithm > 프로그래머스' 카테고리의 다른 글
[프로그래머스] level2. 방문 길이 (자바 JAVA) (0) | 2021.08.25 |
---|---|
[프로그래머스] level2. 영어 끝말잇기 (자바 JAVA) (0) | 2021.08.25 |
[프로그래머스] level2. 스킬트리 (자바 JAVA) (0) | 2021.08.25 |
[프로그래머스] level2. 다음 큰 숫자 (자바 JAVA) (0) | 2021.08.25 |
[프로그래머스] level1. 소수 만들기 (자바 JAVA) (0) | 2021.08.25 |
Comments