A collection of programming exercises I worked on while learning.
- C — conditionals, loops, arrays, sorting, functions
- Python — algorithmic exercises, string manipulation, mini-games (
python/) - Lua — basic programming constructs
- Assembly — low-level programming (
assemb/)
c/— C programspython/— Python exerciseslua/— Lua exercisesassemb/— Assembly exercises
# C
gcc file.c -o file && ./file
# Python
python3 python/file.py
# Lua
lua file.lua