Sorting algorithm visualizer in pygame Controls R: Shuffle M: MergeSort B: BubbleSort I: InsertionSort S: SelectionSort A: AutoSort ↑: Increase FPS ↓: Decrease FPS Run using precompiled executable Clone the repository git clone https://github.com/yourusername/sort_algo.git cd sort_algo Go into the dist/ folder and click on sorter.exe! sorter.exe Run locally from Source (Python) Clone the repository git clone https://github.com/flameguy150/sort_algo.git cd sort_algo Create and activate a virtual environment py -m venv .venv (PowerShell) .\.venv\Scripts\Activate.ps1 (Mac/Linux) source .venv/bin/activate Install dependencies: pip install -r requirements.txt Run file windows: py main.py mac: python3 main.py