Skip to content
View shakeelmajeed-work's full-sized avatar
💭
Studying
💭
Studying

Highlights

  • Pro

Organizations

@PayBridge
Block or Report

Block or report shakeelmajeed-work

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. Side-Projects Side-Projects Public

    A place for all my snippets of coding. This could be solutions to Leetcode problems, CodeChef problems or code that helps make my life easier

    Python

  2. bgstudentforum bgstudentforum Public

    HTML

  3. Millionaire-game Millionaire-game Public

    Was asked to code a quiz game using visual basic. Implemented a GUI.

    Visual Basic .NET

  4. Skatezy Skatezy Public

    Forked from jaredjhe/Skatezy

    HTML

  5. Binary Search in Python 3! Binary Search in Python 3!
    1
    def dosearch(array, target):
    2
       min = 0
    3
       max = len(array) - 1
    4
       array = sorted(array)
    5
       while min<=max:
  6. Selection Sort in Python 3! Selection Sort in Python 3!
    1
    Array = [18, 6, 66, 44, 9, 22, 14] #example
    2
    for i in range(len(Array)): #looping through till length of array
    3
      minindex = i #initial index of smallest element
    4
      ''''whilst looping through whole array, find the minimum value'''
    5
      for j in range(i+1, len(Array)):