Trickcal Speaki image is sliced into vertical pieces, randomly shuffled, and reconstructed using various sorting algorithms.
This project reinterprets the famous MapleStory sorting algorithm portfolio presentation into a Trickcal-themed version.
Reference: Na-bi-gom's Epic Games Job Application Portfolio
https://www.youtube.com/watch?v=m4EMG63W388
- Scrambled pixel image → sorting → Speaki face reconstruction
- Red line = Swap
- Green line = Compare
dot.mp3plays during sortingspiki.mp3plays when sorting is completed- Automatically moves to the next algorithm after completion
- Bubble Sort
- Selection Sort
- Insertion Sort
- Cocktail Sort
- Shell Sort
- Quick Sort
- Merge Sort
- Heap Sort
- Counting Sort
- Radix Sort
SSA/
├── main.py
├── speaki_final.png
├── dot.mp3
├── spiki.mp3
├── bubblesort.py
├── selectionsort.py
├── insertionsort.py
├── cocktailsort.py
├── shellsort.py
├── quicksort.py
├── mergesort.py
├── heapsort.py
├── countingsort.py
└── radixsort.py

