글
프로그래머스 C# 이진 변환 반환하기(이진수, 이진법 Convert.ToString)
프로그래밍
2023. 2. 1. 17:06
728x90
SMALL
using System;
public class Solution {
public int[] solution(string s) {
int[] answer = new int[2];
int index = 0;
int i = 0;
while(s != "1")
{
int length = s.Length;
s = s.Replace("0", "");
index++;
length = length - s.Length;
i += length;
s = Convert.ToString(s.Length, 2);
}
answer[0] = index;
answer[1] = i;
return answer;
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 배열 두 배 만들기(P, J) (0) | 2023.02.04 |
---|---|
프로그래머스 C# 몫 구하기(개쉬움, 파이썬, 자바) (0) | 2023.02.02 |
프로그래머스 C# 내적 (0) | 2023.02.01 |
C# 부족한 금액 계산하기 (0) | 2023.01.31 |
LG CNS 스마트팩토리(미국) 코딩 테스트 본 사람은 없나... (0) | 2023.01.29 |