일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- python all testcode
- 2차 코딩테스트
- Spring
- 우아한테크코스 2차
- AWS S3
- docker-compose
- TypeError: 'property' object is not iterable
- depends_on
- EC2
- Django
- classproperty
- docker
- python
- 프로그래머스
- springboot 3.0.0
- depends
- S3
- AWS
- github
- classmethod
- DB
- 우아한 테크코스 2차 합격
- OperationalError
- 재귀함수가 뭔가요
- github skyline
- METACLASS
- javascript
- MySQL server on 'db' (115)
- 코딩테스트
- 갓재석
목록javascript (4)
hanbin.dev
문제 풀이 코드 function solution(progresses, speeds) { var answer = []; var count = 0; var time = 0; // #1 while(progresses.length > 0){ if ((progresses[0] + speeds[0] * time) >= 100 ){ // #2 count += 1; progresses.splice(0,1); speeds.splice(0,1); time -= 1; // #3 } else { if (count > 0){ answer.push(count); // #4 count = 0; } } time += 1; } answer.push(count); return answer; } FIFO 구조에서 착안해서 코딩했다. #1..
문제 풀이 코드 function solution(n, lost, reserve) { var answer = 0; var duplicatedStudent = [] for (var i = 0; i < lost.length; i++){ if (reserve.includes(lost[i])){ duplicatedStudent.push(lost[i]); // #1 } } for (var student of duplicatedStudent){ var reserveIdx = reserve.indexOf(student); // #2 reserve.splice(reserveIdx,1); var lostIdx = lost.indexOf(student); lost.splice(lostIdx,1); } answer = n -..
문제 풀이 코드 function solution(genres, plays) { var answer = []; var genreDict = {}; for (var i = 0; i x[1]).reduce(function(sum,currValue){ return sum + currValue; }, ..
문제 풀이 코드 function solution(clothes) { var answer = 1; var clothesDict = {} for (var i = 0; i < clothes.length; i++){ if (clothes[i][1] in clothesDict){ // #1 clothesDict[clothes[i][1]] += 1; }else{ clothesDict[clothes[i][1]] = 1; } } for (var key in clothesDict){ // #2 answer *= clothesDict[key] + 1 } return answer - 1; // #3 } #1 만약 clothesDict 에 없는 key 값이 들어왔다면 1로 초기화 시키고, 존재한다면 1 을 더해줘 해당 의상 ..