Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- beautifulsoup
- 단순 반복 자동화
- BigDecimal
- 빗썸 API 사용
- Web Service Architecture
- Web Server란
- Python
- 리눅스
- JavaScript Obejct Notation
- 리눅스 777
- 즐겨찾기가 가장 많은 식당 정보 출력하기
- 파이썬 주식
- 변동성 돌파전략
- JSON특징
- pybithumb
- WAS WebServer 차이
- 프로그래머스 SQL
- 트레이딩 봇 만들기
- 프로그래머스 소수
- 파이썬 가상환경
- WAS란
- 와스 웹서버의 차이
- 프로그래머스
- 파이썬
- 리눅스 rwx
- 오라클
- spring
- JSON 형식
- java
- string format
Archives
- Today
- Total
목록[코딜리티] Binary Gap (1)
IT 개발자_S
[코딜리티] Binary Gap
1. 입력값 N 입력후 Binary 값으로 변환 2. Binary 값으로 변환하기 위해 Integer 클래스의 toBinaryString 메소드 활용 3. binaryChar 배열 형태로 각각 정보를 입력받은 후 4. 배열의 값이 1인 경우 전 후 값을 비교하여 Binary Gap 값을 찾는다 // you can also use imports, for example: import java.util.*; // you can write to stdout for debugging purposes, e.g. // System.out.println("this is a debug message"); class Solution { public int solution(int N) { // write your code ..
IT/알고리즘_JAVA
2020. 5. 9. 15:03