AI/ML
2024-10-21
Python
18 min
Implementation of A* Heuristic Search, Depth-First Search (DFS), and additional algorithms to find optimal paths in the Bloxorz 3D game.
2024-10-29
22 min
A Python-based project that uses machine learning to predict match outcomes based on recent match data from Riot Games' API. This program gathers data on the player's last 100 matches, processes it, and trains machine learning models for predictive analysis.
Multimedia Processing
2024-10-23
34 min
Python implementation of a program that processes a video clip containing a green screen and replaces it with a custom image.
Data Structures
2024-09-24
C++
6 min
Learn the fundamentals of stacks, a crucial data structure used for managing data in a LIFO (Last In, First Out) manner, along with practical examples in C++ and Python.
2024-09-26
4 min
Explore linked lists, a versatile data structure that allows for dynamic memory allocation, with clear examples and comparisons to arrays in C++ and Python.
2024-10-01
8 min
Dive into the details of hash tables, a fundamental data structure that provides fast lookups, insertions, and deletions using hash functions, implemented in both C++ and Python.
2024-10-02
2 min
Unpack the essentials of the Queue data structure in this detailed exploration of its implementations in C++ and Python. Learn how this straightforward, FIFO-based system efficiently manages data flows in various applications.
2024-10-07
12 min
Unpack the essentials of a Binary Tree data structure in this detailed exploration of its implementations in C++ and Python. Learn how this iterative, tree-like system efficiently manages insert, search and delete operations.