일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- StyleSheet
- 시큐리티 로그아웃
- 목록
- html
- css
- 리눅스
- 스프링 부트
- 반복문
- springboot
- 소스트리
- input태그
- 로그인
- security
- javascript
- Spring boot
- 코딩테스트
- sql
- 시큐리티로그인
- 싱글톤
- gradle
- JAVA11
- 시큐리티
- 시큐리티 로그인
- 2차원배열
- java
- programmers
- Linux
- codingtest
- 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