일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 삼성
- 배열
- stack
- 콜백지옥
- 코테
- 카카오
- 자바스크립트
- 코딩테스트
- javascript
- 알고리즘
- js
- 중간 평균값 구하기
- 그리디알고리즘
- spring
- 코테준비
- mybatis
- 프로그래머스
- 인프런
- NestJS
- 코딩
- 자바
- AtoZ0403
- 자료구조
- SWEA
- 스텍
- 정렬
- array
- 삼성소프트웨어아카데미
- java
- 백준
- Today
- Total
목록개발자 (2)
개발에 AtoZ까지
1. 문제 Given a list of daily temperatures T, return a list such that, for each day in the input, tells you how many days you would have to wait until a warmer temperature. If there is no future day for which this is possible, put 0 instead. For example, given the list of temperatures T = [73, 74, 75, 71, 69, 72, 76, 73], your output should be [1, 1, 4, 2, 1, 1, 0, 0]. Note: The length of temperat..
1. 문제 Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and you may not use the same element twice. Example: Given nums = [2, 7, 11, 15], target = 9, Because nums [0] + nums [1] = 2 + 7 = 9, return [0, 1]. 2. 문제해설 target의 숫자를 nums 배열에 있는 숫자 2개의 합으로 만들 수 있는데 어느 인덱스에 있는 숫자를 활용해야 ..