Category
Notice
Recent Posts
Recent Comments
Link
Calendar
Archives
Visits
- Today
- Total
개성있는 개발자 되기
Binary Numbers 본문
10진수를 2진수로 만드는 법은, 아래와 같이 직접 구현해도 되지만
ArrayList<Integer> list = new ArrayList<Integer>();
while (n > 0) {
list.add(n%2);
n = n / 2;
}
Java의 Integer
객체에 메소드로 제공되고 있다.
String str = Integer.toBinaryString(n);
'Algorithm > HackerRank' 카테고리의 다른 글
Stack and Queue (0) | 2020.09.17 |
---|---|
Inheritance (0) | 2020.09.12 |
2D Arrays (0) | 2020.09.09 |
Comments