Skip to content
View TheBharatha's full-sized avatar
:octocat:
Committed to constant learning
:octocat:
Committed to constant learning
  • Sr. Staff Engineer at Comerica Bank
  • Frisco, Tx, USA
  • 04:22 (UTC -05:00)
  • X @The_Bharatha

Block or report TheBharatha

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. Budding-Python Budding-Python Public

    My confidence with Python is growing every day as I practice it. I decided to create this repository to exhibit the code that I wrote and found to be interesting. Please take a look at my repositor…

    Python 1

  2. Py_Challenge_Accepted Py_Challenge_Accepted Public

    I created this repo at my early stage of interview preparation. When I was solving challenges on HackerRank and LeetCode, I noticed my algorithms were almost distinct from the rest of the solutions…

    Python 1 1

  3. LeetCode, Find the min time required... LeetCode, Find the min time required to travel from start to end of the coordinates. Concept: list of list
    1
    #Make use of the test cases, All test cases passed. Take a look at my git repo 'Py_Challenge_Accepted'
    2
    points = [[1,1],[3,4],[-1,0]]
    3
    #points = [[1,2],[2,2],[3,2],[0,-2],[4,3]]
    4
    #points = [[1,1],[3,4],[-1,0]]
    5
    #points = [[3,2],[-2,2]]
  4. HackerRank, Piling up! My most celeb... HackerRank, Piling up! My most celebrated code of the week.
    1
    from collections import deque
    2
    
                  
    3
    if __name__ == "__main__":
    4
        #This deque is used store the popped cube from the original array
    5
        vertical = deque()
  5. graduation graduation Public

    Forked from github-education-resources/graduation

    $ git remote <graduation> yearbook

  6. Graphs-and-Algorithms Graphs-and-Algorithms Public

    This is a algorithms and graphs practice repository. The problems are from LeetCode and HackerRank

    Python