phntom - Overview

@phntom

phntom

Follow

View phntom's full-sized avatar

Anton Wolkov phntom

Block or report phntom

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. fastdedup fastdedup Public

    The fastest and easiest way to reclaim space through deduplication on Btrfs, XFS, and ZFS without changing anything.

    Go 2

  2. charts charts Public

    Curated applications for Kubernetes

    Go 7 5

  3. edit_distance.py edit_distance.py

    1

    def ed(w1, w2):

    2

        l1, l2 = len(w1), len(w2)

    3

        

    4

        if l1 == 0:

    5

            return l2
  4. 1800starwars.py 1800starwars.py

    1

    numbers = {

    2

            78279277: 'STARWARS'

    3

            }

    4

    
                  

    5

    words = set(numbers.values())
  5. coin_sum.py coin_sum.py

    1

    ### NaiveMultiCoinSum ###

    2

    # this is O(2^n) runtime and O(n) space

    3

    def coin_sum(coins, target_sum):

    4

      # the number of coins combinations that sum to target

    5

      seen_ordered = set()
  6. count_negatives_sorted_matrix.py count_negatives_sorted_matrix.py

    1

    def count_neg_sorted_matrix(m):

    2

      count = 0

    3

      

    4

      row = 0

    5

      rows = len(m)