LeetCode 1207 solution

LeetCode 1207 solution

1207. Unique Number of Occurrences

#Easy #Array #HashTable

Problem URL

problem

Given an array of integers arr, return true if the number of occurrences of each value in the array is unique or false otherwise.

Example 1:

  • Input: arr = [1,2,2,1,1,3]
  • Output: true
  • Explanation: The value 1 has 3 occurrences, 2 has 2 and 3 has 1. No two values have the same number of occurrences.

python

class Solution:
    def uniqueOccurrences(self, arr: List[int]) -> bool:
        # hash table
        hash_t = {}
        for i in arr:
            if i in hash_t:
                hash_t[i] += 1
            else:
                hash_t[i] = 1
        hash_t_ = {}
        for j in hash_t.values():
            if j in hash_t_:
                hash_t_[j] += 1
            else:
                hash_t_[j] = 1
        for k in hash_t_.values():
            if k > 1:
                return False
        return True

The first thought that come up with my mind is that "I should use hash table with this problem". Occurrences of each number needs to be checked. And also, the recorded hash tables needs to be checked one more time with hash table. With this two step, I could solve the problem.

The best thing about hash table is that it is Fast data retrieval structure. At very most time for algorithm problem, using hash table for data search and store is faster than just search with for loop. Because of the "key-value pairs and hash function", this advantage($O(1)$) is possible.

other solution

This is solution from MarkSPhilips31

class Solution:
    def uniqueOccurrences(self, arr: List[int]) -> bool:
        freq = {}
        for x in arr:
            freq[x] = freq.get(x, 0) + 1

        return len(freq) == len(set(freq.values()))

The code is so short... and clean. Making hash table is same as me, but to check whether there is over 1 occurrence happen, the len(freq) == len(set(freq.values())) part is soooo dope. Eduacative

Read more

airflow 구성하고 vscode로 코딩하기

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

[Json] dump vs dumps

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