반응형
Notice
Recent Posts
Recent Comments
- Today
- Total
작심삼일
[LeetCode] 1544 | Make The String Great | Python 본문
728x90
반응형
문제 링크: https://leetcode.com/problems/make-the-string-great/
문제
Given a string s of lower and upper case English letters.
A good string is a string which doesn't have two adjacent characters s[i] and s[i + 1] where:
- 0 <= i <= s.length - 2
- s[i] is a lower-case letter and s[i + 1] is the same letter but in upper-case or vice-versa.
To make the string good, you can choose two adjacent characters that make the string bad and remove them. You can keep doing this until the string becomes good.
Return the string after making it good. The answer is guaranteed to be unique under the given constraints.
Notice that an empty string is also good.
조건
- 1 <= s.length <= 100
- s contains only lower and upper case English letters.
내 풀이
큐(queue)에 s를 하나씩 담는다.
큐의 마지막 문자가 s의 현재 문자(char)와 같고, 각각 대소문자라면, 큐의 마지막 원소를 pop한다.
그렇지 않다면 현재 문자(char)를 queue에 추가한다.
s의 모든 문자에 대해서 위의 과정을 거친 후 큐에 남은 원소를 모두 이어붙여서(''.join(queue)) 리턴한다.
코드
class Solution:
def makeGood(self, s: str) -> str:
queue = []
for char in s:
if not queue:
queue.append(char)
else:
if abs(ord(char)-ord(queue[-1])) == 32:
queue.pop()
else:
queue.append(char)
return ''.join(queue)
728x90
반응형
'스터디 > 코테' 카테고리의 다른 글
[LeetCode] 1047 | Remove All Adjacent Duplicates In String | Python (0) | 2022.11.10 |
---|---|
[LeetCode] 901 | Online Stock Span | Python (0) | 2022.11.09 |
[LeetCode] 1323 | Maximum 69 Number | Python (0) | 2022.11.07 |
[LeetCode] 2131 | Longest Palindrome by Concatenating Two Letter Words | Python (0) | 2022.11.03 |
[LeetCode] 433 | Minimum Genetic Mutation | Python (0) | 2022.11.02 |
Comments