반응형
포인트
- 단어를 반으로 나누고 모음(vowels) 개수를 카운팅 하는 문제입니다.
🧶문서는 항상 수정될 수 있습니다. 비판은 환영합니다.
python
class Solution:
def halvesAreAlike(self, s: str) -> bool:
temp = len(s) // 2
a = s[:temp]
b = s[temp:]
vowels = 'aeiouAEIOU'
acount, bcount = 0, 0
for char in vowels:
acount += a.count(char)
bcount += b.count(char)
return acount == bcount
반응형
'알고리즘' 카테고리의 다른 글
[알고리즘] 등산로 조성 (0) | 2021.04.09 |
---|---|
[알고리즘] 디저트 카페 (0) | 2021.04.09 |
[알고리즘] Minimum Operations to Make Array Equal (0) | 2021.04.06 |
[알고리즘] 키패드 누르기 (0) | 2021.04.06 |
[알고리즘] 수영장 (0) | 2021.04.05 |
댓글