일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 priority queue
- 파이썬알고리즘
- 파이썬릿코드풀기
- python Leetcode
- 릿코드 풀기
- 릿코드풀이
- 파이썬릿코드
- 파이썬 알고리즘
- 파이썬알고리즘풀기
- leetcode풀이
- python 알고리즘
- 코틀린기초
- 파이썬 프로그래머스
- 파이썬 릿코드
- 알고리즘풀기
- 릿코드 파이썬
- 릿코드
- 상가수익률계산기
- leetcode 풀기
- leetcode풀기
- python xor
- binary search
- 알고리즘풀이
- 잇츠디모
- LeetCode
- 릿코드풀기
- 파이썬 알고리즘 풀기
- python 릿코드
- python zip_longest
- python sorted
- Today
- Total
목록leetcode 파이썬 (2)
소프트웨어에 대한 모든 것
1436. Destination City 제목 문제) 솔루션1) - hash 자료구조 direct path 두 도시를 key, value 형태의 hash로 저장합니다. destination 중 hash의 key에 없다는 의미는 출발해서 도착하는 도시가 없다는 것이므로 그것이 해에 해당합니다. class Solution: def destCity(self, paths: List[List[str]]) -> str: d = {} for path in paths: d[path[0]] = path[1] for dest in d.values(): if dest not in d: return dest return None 솔루션2) - set 사용 출발하는 도시와 도착하는 도시를 set 자료구조로 데이터를 유지합니다...
https://leetcode.com/problems/valid-parentheses/ Valid Parentheses - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제) 풀이 전략) 스택 자료구조 이용 솔루션1) class Solution: def isValid(self, s: str) -> bool: end_parentheses = [')', ']', '}'] stack = [] stack.append(s[0]) for c in s[1:]: if c i..