일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- input태그
- 시큐리티 로그아웃
- 시큐리티
- 소스트리
- css
- 싱글톤
- 시큐리티 로그인
- Spring boot
- java
- codingtest
- springSecurity
- 리눅스
- 코딩테스트
- 목록
- JAVA11
- springboot
- 반복문
- gradle
- StyleSheet
- javascript
- 시큐리티로그인
- 프로그래머스
- programmers
- 스프링 부트
- html
- security
- sql
- 2차원배열
- Linux
- 로그인
- Today
- Total
목록programmers (6)
JAVAIARY
문제: https://school.programmers.co.kr/learn/courses/30/lessons/120875 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int[][] dots) { int answer = 0; for (int i = 1; i < dots.length; i++) { double x = dots[0][0] - dots[i][0]; double y = dots[0][1] - dots[i][1]; double incl1 = (dots[0][1] - dots[i][..
문제: https://school.programmers.co.kr/learn/courses/30/lessons/118666 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public String solution(String[] survey, int[] choices) { String answer = ""; // 비동의 - 동의 선택지 //RT, CF, MJ, AN // 동점인 경우 알파벳순 int[] personality = new int[8]; // 각각 R, T, C, F, J, M, A, N 의 점수를 담을 배열 for..

문제: https://school.programmers.co.kr/learn/courses/30/lessons/42747 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr import java.util.Arrays; class Solution { public int solution(int[] citations) { int answer = 0; Arrays.sort(citations); // 논문 수가 1일때 if (citations.length == 1) { answer = citations[0] == 0 ? answer : answer+1 ; return ..
문제: https://school.programmers.co.kr/learn/courses/30/lessons/42885 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr public int solution(int[] people, int limit) { int answer = 0; // 사용된 구명보트의 수 Arrays.sort(people); // people 배열을 ArrayList 형식으로 변환 ArrayList peopleAl = new ArrayList(); for (int person : people) { peopleAl.add(person); ..
문제:https://school.programmers.co.kr/learn/courses/30/lessons/155652 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public String solution(String s, String skip, int index) { String answer = ""; for (int i = 0; i < s.length(); i++) { char target = s.charAt(i); // i번째 문자 int idxCnt = 0; // idxCnt 가 index 와 같지 않고, 현재 t..
문제: 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