Skip to content
View jayceazua's full-sized avatar
:octocat:
Focusing
:octocat:
Focusing

Highlights

  • Pro
Block or Report

Block or report jayceazua

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

  1. search.py search.py
    1
    def binary_search(array, item):
    2
      """return the index of item in sorted array or None if item is not found"""
    3
      array = sorted(array)
    4
      return binary_search_iterative(array, item)
    5
    
                  
  2. VMware last coding problem VMware last coding problem
    1
    """
    2
    Compress String
    3
    4
    input:
    5
       i j
  3. island_count.py island_count.py
    1
    def island_count(grid):
    2
      if not grid:
    3
        return 0
    4
    
                  
    5
      nr = len(grid)
  4. shopify_image_hub shopify_image_hub Public

    Shopify Challenge Backend Internship 2021

    HTML