Codility Lesson 1 BinaryGap JAVA
1. 문제 app.codility.com/programmers/lessons/1-iterations/ 1. Iterations lesson - Learn to Code - Codility Find longest sequence of zeros in binary representation of an integer. app.codility.com 2. 설명 이진수 10001001이 있다면 1과 1사이의 0의 갯수중 최댓값을 구하는 문제. 입력받은 N을 2진수(String)로 바꾸고, 한 글자씩 비교해가면서 구했다. Time Spent는 1M 나왔다. 3. 코드 class Solution { public int solution(int N) { // 10 -> 2 String N2 = Integer.toBina..
알고리즘 풀이
2020. 11. 4. 20:35
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday