LeetCode 1544 solution

LeetCode  1544 solution

problem

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.

Example 1

  • Input: s = "leEeetcode"
  • Output: "leetcode"
  • Explanation: In the first step, either you choose i = 1 or i = 2, both will result "leEeetcode" to be reduced to "leetcode".

python

class Solution:
    def makeGood(self, s: str) -> str:
        stack = []
        for i in range(len(s)):
            if not stack:
                stack.append(s[i])
                continue
            elif s[i].lower() == stack[-1].lower() and s[i] != stack[-1]:
                stack.pop()
            else:
                stack.append(s[i])
        return "".join(stack)

이것 역시 엄청나게 어려운 stack 문제라고 볼 수는 없다. 다만 elif s[i].lower() == stack[-1].lower() and s[i] != stack[-1]: 이 부분에 대해서 생각하지 못하면 효율적으로 코드를 짤 수 없을지도 모른다. 모두 lower로 수렴하기 때문에 조건도 lower에 대한 확인을 해주면 된다. stack[-1] != s[i]를 함께 살펴보고 있기 때문에, 같이 lowercase인 경우라도 해당 조건과 함께라면 둘 중 하나는 uppercase인 경우에 대한 검색이란 것을 알 수 있다.

Read more

airflow 구성하고 vscode로 코딩하기

맥에서 했으면 훨씬 구성이 쉬웠겠지만, 그리고 poetry로 했으면 훨씬 쉬웠겠지만 워낙 규모가 있는 라이브러리이다 보니 과정이 어려워 다른 참조들을 보면서 따라했다. 기본적으로 poetry랑 쓰기 어려운 이유는 airflow 내부의 라이브러리에 따라 poetry가 버전을 참조하지 못해서 에러가 나는 경우가 존재한다고 한다. 또한 하나의 문제는 mac에서는 그냥 리눅스가 존재하지만 윈도우에서 하려면 윈도우용 linux인

[Json] dump vs dumps

json은 javascript object notation의 줄임말로 웹 어플리케이션에서 구조화된 데이터를 표현하기 위한 string 기반의 포맷이다. 서버에서 클라인트로 데이터를 전송하여 표현하거나, 그 반대로 클라이언트에서 서버로 보내는 경우들에 사용된다. javascript 객체 문법과 굉장히 유사하지만 워낙에 범용성이 넓게 설계되어 있어서 다른 언어들에도 많이 사용된다. 기본적으로 python 에는 json 이 내장 모듈이다. 바로 import json해주면