일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스프링부트와 AWS로 혼자 구현하는 웹서비스
- 자바스크립트
- 기술면접
- 어찌저찌해냄
- 테스트코드
- AWS EC2 구현
- 스프링부트 테스트코드
- 스프링 부트와 AWS로 혼자 구현하는 웹 서비스 2장
- 운영체제
- jpa
- 오늘도
- 트랜지스터
- 내가해냄
- 개발자기술면접
- Flexbox
- 스프링부트
- 스프링부트와 AWS로 혼자 구현하는 웹 서비스
- 그래도일단
- CS
- 스프링 부트와 AWS로 혼자 구현하는 웹 서비스
- Today
- Total
목록코딩 테스트 (27)
개발 공부
https://school.programmers.co.kr/learn/courses/30/lessons/12940 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int[] solution(int n, int m) { int[] answer = new int[2]; int max = Math.max(n, m); int min = Math.min(n, m); while(max % min != 0){ int tmp = min; min = max % min; max = tmp; } answer[0] = min; answ..
https://school.programmers.co.kr/learn/courses/30/lessons/82612# 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public long solution(long price, long money, long count) { long answer = -1; long prCnt = 0; for(int i = 1; i = price){ answer = 0; } else{ answer = price - money; } return answer; } } 상당히 직관적인 코드를 짰다....!..
https://school.programmers.co.kr/learn/courses/30/lessons/77884 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int left, int right) { int answer = 0; //left부터 right까지 약수의 개수 구하기, 개수에 따라 연산하기 반복 for(int i = left; i
https://school.programmers.co.kr/learn/courses/30/lessons/12918# 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public boolean solution(String s) { final String REG = "[0-9]+"; boolean answer = false; if(s.length() == 4 || s.length() == 6){ answer = true; } else{ return false; } answer = (s.matches(REG))? true : fal..
https://school.programmers.co.kr/learn/courses/30/lessons/12917 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr import java.util.Arrays; class Solution { public String solution(String s) { String answer = ""; char[] ch = s.toCharArray(); Arrays.sort(ch); for(int i = ch.length - 1; i >= 0; i--){ answer += ch[i]; } return answer; } } 3..
https://school.programmers.co.kr/learn/courses/30/lessons/70128 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int[] a, int[] b) { int answer = 0; int mul = 0; for(int i = 0; i < a.length; i++){ mul = a[i] * b[i]; answer += mul; } return answer; } } 다른 방식으로 풀 수 있을까 하고 고민하다가 제출한 뒤 다른 사람들 풀이를 봤지만 거..