Skip to content
View phntom's full-sized avatar

Organizations

@proofpoint

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned Loading

  1. charts charts Public

    Curated applications for Kubernetes

    Go 7 4

  2. 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
  3. 1800starwars.py 1800starwars.py
    1
    numbers = {
    2
            78279277: 'STARWARS'
    3
            }
    4
    
                  
    5
    words = set(numbers.values())
  4. 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()
  5. goalert goalert Public

    pikud haoref israel early warning rocket alerts using ynet api

    Go 3

  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)