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 | 31 |
Tags
- 프로그래머스
- jQuery
- JS
- EUREKA
- OAuth
- 스프링부트
- 스프링 클라우드
- 도커
- spring boot
- date
- 자바
- 유레카
- Spring
- STS
- 자바스크립트
- 비동기
- Spring Cloud
- SpringBoot
- docker
- Java
- map()
- 스프링
- IntelliJ
- leetcode
- GIT
- JavaScript
- spring security
- map
- gitlab
- 코딩테스트
Archives
- Today
- Total
목록leetcode (3)
RATSENO
[Leetcode P70]피보나치 수열
package example.leetcode; public class P70 { public int climbStairs(int n) { /* n=0 ------------->0 n=1 1 ------------->1 n=2 1,1 2 ------------->2 n=3 1,1,1 1,2 2,1 ------------->3 n=4 1,1,1,1 1,1,2 1,2,1 2,1,1 2,2 -------------->5 n=5 1,1,1,1,1 1,1,1,2 1,1,2,1 1,2,1,1 2,1,1,1 1,2,2 2,1,2 2,2,1 --------------->8 피보나치 수열 */ // base cases if(n
DEV/코딩테스트 문제풀기
2021. 3. 22. 10:01
[Leetcode P67]2진수 더하기
public class P67 { private static String addBinary(String a, String b) { StringBuilder sb = new StringBuilder(); int i = a.length() - 1; int j = b.length() -1; int carry = 0; while (i >= 0 || j >= 0) { int sum = carry; if (j >= 0){ sum += b.charAt(j--) - '0'; } if (i >= 0){ sum += a.charAt(i--) - '0'; } sb.append(sum % 2); carry = sum / 2; } if (carry != 0){ sb.append(carry); } return sb.reverse..
DEV/코딩테스트 문제풀기
2021. 3. 22. 09:57