Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 파이썬 주식
- beautifulsoup
- JSON 형식
- 와스 웹서버의 차이
- 프로그래머스
- 리눅스 777
- JSON특징
- string format
- java
- Web Service Architecture
- JavaScript Obejct Notation
- 단순 반복 자동화
- WAS란
- 리눅스
- 프로그래머스 소수
- 빗썸 API 사용
- 즐겨찾기가 가장 많은 식당 정보 출력하기
- pybithumb
- Web Server란
- BigDecimal
- 오라클
- 변동성 돌파전략
- 프로그래머스 SQL
- Python
- 트레이딩 봇 만들기
- WAS WebServer 차이
- spring
- 리눅스 rwx
- 파이썬 가상환경
- 파이썬
Archives
- Today
- Total
목록프로그래머스 위장 (1)
IT 개발자_S

● 해쉬를 사용하요 알고리즘을 만들 수 있다. https://programmers.co.kr/learn/courses/30/lessons/42578 코딩테스트 연습 - 위장 programmers.co.kr 접근방법 1. 해쉬맵을 사용하여 중복을 제거하고 2. 해당 의상의종류별로 cnt 를하여 3. 경우의수를 조합 의상종류별 *, 각 의상종류별의 합 import java.util.*; class Solution { public int solution(String[][] clothes) { int answer = 0; answer = process(clothes); return answer; } public int process(String[][] clothes){ int result = 0; int map..
카테고리 없음
2022. 3. 25. 11:13