티스토리 뷰
Easy 문제로 설명과 예시는 아래와 같다.
: Given a pattern and a string s, find if s follows the same pattern.
Here follow means a full match, such that there is a bijection between a letter in pattern and a non-empty word in s.
Pattern과 String이 주어지고 주어진 String은 공백(space)를 통해 단어를 구분해뒀고, 각 단어를 하나의 문자로 치환했을 때 주어진 pattern과 일치가 가능하다면 true 그렇지 않으면 false를 반환하면 된다. Easy 문제임에도 acceptance rate는 41.7% 밖에 되지 않는다. Dictionary(Hash map)을 이용해 풀었다. 주어진 Pattern의 길이와 주어진 단어의 개수가 다르면 우선 일치할 수 없기에 그 부분을 확인해 다르면 false를 반환해주었고, Dictionary의 key로 pattern의 각 element를 String의 각 단어를 value로 활용해 한 번 확인했고, key를 통해 한 번 더 확인했다. 처음엔 pattern의 element만을 key로 제출하니 모든 test case를 충족시킬 수 없없고 반대의 경우도 확인을 해줘야한다.
Example 1:
Input: pattern = "abba", s = "dog cat cat dog"
Output: true
Example 2:
Input: pattern = "abba", s = "dog cat cat fish"
Output: false
Example 3:
Input: pattern = "aaaa", s = "dog cat cat dog"
Output: false
아래는 Python으로 내가 작성한 솔루션이다.
class Solution:
def wordPattern(self, pattern: str, s: str) -> bool:
words = []
i = 0
while i < len(s):
l = i
bomb = 0
while i < len(s) and s[i] != ' ':
i += 1
r = i
words.append(s[l:r])
i += 1
if len(pattern) != len(words):
return False
dic = defaultdict(str)
for i in range(len(pattern)):
if pattern[i] not in dic:
dic[pattern[i]] = words[i]
else:
if dic[pattern[i]] != words[i]:
return False
dic = defaultdict(str)
for i in range(len(pattern)):
if words[i] not in dic:
dic[words[i]] = pattern[i]
else:
if dic[words[i]] != pattern[i]:
return False
return True
반응형
'기술(Tech, IT) > 리트코드(LeetCode)' 카테고리의 다른 글
[LeetCode] 298. Binary Tree Longest Consecutive Sequence (2) | 2023.03.03 |
---|---|
[LeetCode] 296. Best Meeting Point (0) | 2023.03.02 |
[LeetCode] 277. Find the Celebrity (2) | 2023.02.21 |
[LeetCode] 272. Closest Binary Search Tree Value II (0) | 2023.02.18 |
[LeetCode] 270. Closest Binary Search Tree Value (0) | 2023.02.17 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- DICTIONARY
- Hash Map
- 오블완
- 안드로이드
- 머신 러닝
- socket programming
- min heap
- 파이썬
- leetcode
- java
- defaultdict
- 티스토리챌린지
- The Economist
- tf-idf
- ml
- C++
- The Economist Espresso
- 이코노미스트
- Computer Graphics
- 이코노미스트 에스프레소
- I2C
- 리트코드
- 투 포인터
- join
- Android
- vertex shader
- 딕셔너리
- 소켓 프로그래밍
- machine learning
- Python
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함
반응형