일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 코딩테스트
- S3
- docker
- python
- python all testcode
- TypeError: 'property' object is not iterable
- classproperty
- Spring
- github
- github skyline
- 재귀함수가 뭔가요
- javascript
- docker-compose
- EC2
- depends
- 갓재석
- springboot 3.0.0
- AWS
- depends_on
- classmethod
- MySQL server on 'db' (115)
- 프로그래머스
- METACLASS
- 우아한테크코스 2차
- 우아한 테크코스 2차 합격
- AWS S3
- Django
- OperationalError
- DB
- 2차 코딩테스트
Archives
목록위장 (1)
hanbin.dev
[코딩테스트] 프로그래머스 위장 with javascript
문제 풀이 코드 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 을 더해줘 해당 의상 ..
코딩테스트
2021. 5. 6. 10:32