일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- shiba
- attribute
- data science
- 운영체제
- iterator
- 43. Multiply Strings
- 컴퓨터의 구조
- 밴픽
- Python
- concurrency
- Python Implementation
- LeetCode
- DWG
- 30. Substring with Concatenation of All Words
- 프로그래머스
- Class
- kaggle
- Convert Sorted List to Binary Search Tree
- Regular Expression
- t1
- 315. Count of Smaller Numbers After Self
- Substring with Concatenation of All Words
- 715. Range Module
- 109. Convert Sorted List to Binary Search Tree
- Python Code
- 시바견
- Protocol
- 파이썬
- Decorator
- Generator
Archives
- Today
- Total
목록127. Word Ladder (1)
Scribbling
LeetCode: 127. Word Ladder
아래 문제와 거의 같다. https://focalpoint.tistory.com/101 LeetCode: 126. Word Ladder II - 시바견의 끄적임 개인적으로 어려웠던 문제... A. 내가 푼 방법 일단 내가 푼 방법은 아래와 같다. 1) 모든 word에 대해 graph를 그린다. (word간 글자가 1개만 차이나는 경우 연결) 2) 다익스트라 알고리즘으로 최단 경 focalpoint.tistory.com class Solution: def ladderLength(self, beginWord: str, endWord: str, wordList: List[str]) -> int: wordSet = set(wordList) wordSet.discard(beginWord) if endWord no..
Computer Science/Coding Test
2021. 11. 7. 21:03