Leetcode 2879 Solution

Leetcode 2879 Solution

2870. Minimum number of Operations to make Array Empty

#Medium #Hash #Quotient_remain

You are given a 0-indexed array nums consisting of positive integers.

There are two types of operations that you can apply on the array any number of times:

Choose two elements with equal values and delete them from the array.
Choose three elements with equal values and delete them from the array.

Return the minimum number of operations required to make the array empty, or -1 if it is not possible.

 

Example 1:

  • Input: nums = [2,3,3,2,2,4,2,3,4]
  • Output: 4
  • Explanation: We can apply the following operations to make the array empty:
    • Apply the first operation on the elements at indices 0 and 3. The resulting array is nums = [3,3,2,4,2,3,4].
    • Apply the first operation on the elements at indices 2 and 4. The resulting array is nums = [3,3,4,3,4].
    • Apply the second operation on the elements at indices 0, 1, and 3. The resulting array is nums = [4,4].
    • Apply the first operation on the elements at indices 0 and 1. The resulting array is nums = [].
      It can be shown that we cannot make the array empty in less than 4 operations.

python

class Solution:
    def minOperations(self, nums: List[int]) -> int:
        count_dict = Counter(nums)
        op = 0
        for k,v in count_dict.items():
            if v == 1:
                return -1
            op += v // 3
            if v % 3:
                op += 1
        return op

The main idea of this problem algorithm is that except the number only appeared once, every number can be divided to 3. And the left is 2, so all you need to do is adding 1.

That's all. But the idea is quite not easy to come up with. Use hash table and easy add

Read more

airflow 구성하고 vscode로 코딩하기

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

[Json] dump vs dumps

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