Studying
Collection of repositories from a Year 12 student at a respectable Sixth Form. Learning the ropes of software engineering in my free time!
- London
-
00:01
(UTC) - shakeel.surge.sh
Pinned Loading
-
Side-Projects
Side-Projects PublicA 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
-
-
Millionaire-game
Millionaire-game PublicWas asked to code a quiz game using visual basic. Implemented a GUI.
Visual Basic .NET
-
-
Binary Search in Python 3!
Binary Search in Python 3! 1def dosearch(array, target):
2min = 0
3max = len(array) - 1
4array = sorted(array)
5while min<=max:
-
Selection Sort in Python 3!
Selection Sort in Python 3! 1Array = [18, 6, 66, 44, 9, 22, 14] #example
2for i in range(len(Array)): #looping through till length of array
3minindex = i #initial index of smallest element
4''''whilst looping through whole array, find the minimum value'''
5for j in range(i+1, len(Array)):
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.