일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- dfs
- Java
- Python
- group by
- 깊이 우선 탐색
- 파이썬
- programmers
- Lv. 0
- C언어
- bfs
- Lv. 1
- join
- Dynamic Programming
- 프로그래머스
- SQL 고득점 KIT
- 소프티어
- select
- javascript
- 동적계획법
- Lv. 3
- 오블완
- Lv. 2
- LEVEL 2
- 자바스크립트
- level 3
- DP
- SQL
- 티스토리챌린지
- 너비 우선 탐색
- softeer
- Today
- Total
목록Python (130)
몸과 마음이 건전한 SW 개발자
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/77885 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드def solution(numbers): answer = [] for num in numbers: if num % 2: newNum = ["0"] + list(bin(num)[2:]) lenN = len(newNum) zeroIdx = 0 # 가장 가까이 있는 0을 1로 바꾸고 ..
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/131127 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드from collections import defaultdictdef solution(want, number, discount): answer = 0 tot = sum(number) lenW = len(want) lenD = len(discount) for i in range(lenD-tot+1): tenDict = defaultdict..
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/92341 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드 1 (2023.09.07 코드 - 41 줄)def solution(fees, records): cars = [0 for _ in range(10000)] result = [0 for _ in range(10000)] for rec in records: time, car, io = rec.split() car = int(car) h..
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/131130?language=python3 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드def solution(cards): n = len(cards) v = [0 for _ in range(n+1)] stack = [] def dfs(s, cnt): nextC = cards[s-1] if v[nextC]: stack.append(cnt) ..
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/132265 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드from collections import defaultdictdef solution(topping): answer = 0 leftDict = defaultdict(int) rightDict = defaultdict(int) for top in topping: leftDict[top] += 1 for top in toppi..
문제 링크 https://school.programmers.co.kr/learn/courses/30/lessons/138476?language=python3 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 코드 from collections import defaultdict def solution(k, tangerine): answer = 0 tangDict = defaultdict(int) for t in tangerine: tangDict[t] += 1 tangList = sorted(tangDict.items(), key=lambda x: x[1..