🏛️ My Practice Template, you can also learn from the link provide in this page.
[ ] Task is to complete the Notion Setup.
Till This Week
impossible is nothing -Lionel Messi
🎴 Images and Videos
https://www.linkedin.com/in/joshuathadi/
https://github.com/JoshuaThadi
https://www.youtube.com/watch?v=WGDhPwdErIc&t=14s
class Sorter:
def __init__(self, arr):
self.arr = arr
def quick_sort(self, low, high):
if low < high:
pi = self.partition(low, high)
self.quick_sort(low, pi - 1)
self.quick_sort(pi + 1, high)
def partition(self, low, high):
pivot = self.arr[high]
i = low - 1
for j in range(low, high):
if self.arr[j] <= pivot:
i += 1
self.arr[i], self.arr[j] = self.arr[j], self.arr[i]
self.arr
https://open.spotify.com/playlist/3WLDIcG4Cx2UOPy0rbFhQn?si=93636360ce5f44ff
<aside> <img src="/icons/browser-stop_red.svg" alt="/icons/browser-stop_red.svg" width="40px" />
The End.
</aside>