일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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로 혼자 구현하는 웹 서비스
- 자바스크립트
- 테스트코드
- 그래도일단
- Flexbox
- jpa
- AWS EC2 구현
- 어찌저찌해냄
- 개발자기술면접
- 스프링부트와 AWS로 혼자 구현하는 웹서비스
- 스프링 부트와 AWS로 혼자 구현하는 웹 서비스 2장
- 내가해냄
- 오늘도
- CS
- Today
- Total
목록분류 전체보기 (76)
개발 공부
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; } } 다른 방식으로 풀 수 있을까 하고 고민하다가 제출한 뒤 다른 사람들 풀이를 봤지만 거..
https://school.programmers.co.kr/learn/courses/30/lessons/86051 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int[] numbers) { int answer = 45; for(int i = 0; i < numbers.length; i++){ answer -= numbers[i]; } return answer; } } 떨어진 면접에서 풀지 못한 문제였다 집에 와서 풀어보니 너무나도 쉽게 풀려서 슬펐다 ... ㅋㅋㅋ ㅠㅠ
https://school.programmers.co.kr/learn/courses/30/lessons/76501 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int[] absolutes, boolean[] signs) { int answer = 0; for(int i = 0; i < absolutes.length; i++){ if(signs[i] == true){ answer += absolutes[i]; } else{ answer -= absolutes[i]; } } return an..