242. Valid Anagram

242. Valid Anagram
Given two strings s and t, return true if t is an anagram of s, and false otherwise.

An Anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once.

First solv

LeetCode - The World’s Leading Online Programming Learning Platform
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
class Solution:
    def isAnagram(self, s: str, t: str) -> bool:
        def checker(x:str):
            check = {}
            for i in x:
                if i not in check:
                    check[i] = 1
                else:
                    check[i] += 1
            return check
        check_s, check_t = checker(s), checker(t)
        if check_s == check_t:
            return True
        else:
            return False

It is easy to solve this problem with hash table. Cause need to make hash table exactly same way for s and t, made a checker function. It looks like this {"a":1, "b":2}. The dict which is hash table in python has these features.

  1. key never duplicated
  2. it is set with value. So no need to be sorted

So with these features, just make 2 dictionary and compared it.

ring my bell

My solution has middle level of runtime and memory efficiency. One solution I saw and ringed my bell is this solution.

class Solution:
    def isAnagram(self, s: str, t: str) -> bool:
        s_count = Counter(s)
        t_count = Counter(t)

        return s_count == t_count
collections — Container datatypes
Source code: Lib/collections/__init__.py This module implements specialized container datatypes providing alternatives to Python’s general purpose built-in containers, dict, list, set, and tuple.,,…

The Counter in python in built in class for dict subclass for counting hashable objects. It is exactly what we want for this problem and it is always good to use built in solution in python.

Read more

airflow 구성하고 vscode로 코딩하기

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

[Json] dump vs dumps

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