| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 스프링 부트
- 시큐리티로그인
- Spring boot
- security
- 코딩테스트
- java
- 목록
- Linux
- gradle
- codingtest
- javascript
- css
- html
- input태그
- 시큐리티 로그인
- 프로그래머스
- 시큐리티 로그아웃
- springboot
- StyleSheet
- 리눅스
- 로그인
- programmers
- 2차원배열
- JAVA11
- 반복문
- 싱글톤
- sql
- 소스트리
- springSecurity
- 시큐리티
- Today
- Total
목록codingtest (3)
JAVAIARY
문제: https://school.programmers.co.kr/learn/courses/30/lessons/12943 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr public class CollatzConjecture { public int solution(long num) { int answer = 0; if (num != 1) { for (int i = 1; i
문제: https://school.programmers.co.kr/learn/courses/30/lessons/12939 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr static String solution(String s) { String answer = ""; String[] nums = s.split("\\s"); //int로 변환해 arrayList 에 담음 ArrayList intarr = new ArrayList(); for(String num: nums ) { intarr.add(Integer.parseInt(num)); } //최댓값, 최..
문제: https://school.programmers.co.kr/learn/courses/30/lessons/77884 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr public class TheNumberOfAliquotAndSum { public int solution(int left, int right) { int answer = 0; for(int i = left; i