Skip to content
View nglj93's full-sized avatar

Block or report nglj93

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. LeetCode: Check If a Word Occurs As... LeetCode: Check If a Word Occurs As a Prefix of Any Word in a Sentence
    1
    ## Check If a Word Occurs As a Prefix of Any Word in a Sentence
    2
    
                  
    3
    Given a `sentence` that consists of some words separated by a single space, and a `searchWord`.
    4
    
                  
    5
    You have to check if `searchWord` is a prefix of any word in `sentence`.
  2. LeetCode 1. Two Sum: Given an array ... LeetCode 1. Two Sum: Given an array of integers, return indices of the two numbers such that they add up to a specific target.
    1
    class Solution:
    2
        def twoSum(self, nums: List[int], target: int) -> List[int]:
    3
            #using hash_map to store the first occurence
    4
            hash_map = {}
    5
            for idx,i in enumerate(nums):
  3. Maximum Number of Vowels in a Substr... Maximum Number of Vowels in a Substring of Given Length
    1
    ## Maximum Number of Vowels in a Substring of Given Length
    2
    
                  
    3
    Given a string `s` and an integer `k`.
    4
    
                  
    5
    Return the maximum number of vowel letters in any substring of `s` with length `k`.
  4. Transmission-Network Transmission-Network Public

    Python