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 6 1

  2. fused_home fused_home Public

    Python 1

  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. anton anton Public

    IntelliJ Plugin for all things Anton

    Java 1