1. BinaryGap [Python] 문제 출처 https://app.codility.com/programmers/lessons/1-iterations/binary_gap/ BinaryGap coding task - Learn to Code - Codility Find longest sequence of zeros in binary representation of an integer. app.codility.com 문제를 간단히 요약하면 임의의 양의 정수 N을 입력받으면 이진수로 변환하였을때 1과 1사이에 0이 연속적으로 몇개가있는지 , 그것의 최대값을 구하는 문제였다. 파이썬의 bin을 이용하여 이진수를 구할 수 있다.(반환 값은 스트링이다.) 예를들어 십진수 9는 1001 인데 이때 bin(9)를 ..