[프로그래머스] 위장 - JAVA
[문제 링크] https://school.programmers.co.kr/learn/courses/30/lessons/42578 import java.util.*; class Solution { public int solution(String[][] clothes) { HashMap hashMap = new HashMap(); for (String[] cloth : clothes) { //만약 해시에 키가 없으면 1개로 카운트 해서 추가 if (!hashMap.containsKey(cloth[1])) { hashMap.put(cloth[1], 1); //해시에 키가 존재하면 이전 카운트에 1 추가 } else if (hashMap.containsKey(cloth[1])) { hashMap.put(clot..
알고리즘 문제
2023. 4. 13. 16:35
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Lock
- jmeter토큰
- jmeter로그인
- Redisson
- CheckedException
- jwt
- 항해
- index
- jmeter부하테스트
- pessimisticlock
- jmeter시나리오
- 동적크롤링
- jmeter세션
- 프로그래머스
- Java
- 대규모더미데이터
- CorrectnessAndTheLoopInvariant
- 인덱스
- Spring
- 스프링faker
- 자바
- 부하테스트시나리오
- jmeter쿠키
- EC2
- Python
- 토큰
- bankersRounding
- jmeter테스트
- Redis
- hackerrank
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함