https://github.com/mtrazzi/42-projects
My projects from project-based learning education 42
https://github.com/mtrazzi/42-projects
42born2code c python3
Last synced: about 1 month ago
JSON representation
My projects from project-based learning education 42
- Host: GitHub
- URL: https://github.com/mtrazzi/42-projects
- Owner: mtrazzi
- Created: 2018-01-24T17:38:56.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-02-03T12:27:58.000Z (over 6 years ago)
- Last Synced: 2025-03-22T19:46:24.359Z (about 1 year ago)
- Topics: 42born2code, c, python3
- Homepage: https://www.42.us.org/
- Size: 4.88 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 42-projects
## Python projects
#### gomoku
AI bot that plays the game of Gomoku.
## npuzzle
Solves 15-puzzles of various sizes/configs optimally using A*.
## krpsim
Program generating a task schedule under time/resources constrants.
## C projects
All the projects are from scratch using only free, malloc and write from standard library.
The C projects respect the 42 norm of coding (25 lines of code with at most 80 characters, etc.)
#### corewar
Implementation of [a famous 1984 game](https://en.wikipedia.org/wiki/Core_War "a famous 1984 game"), a virtual arena, where programs written in a simple assembly language fight each other. Wrote an assembler to generate champions' bytecode, and a virtual machine to execute the champions' bytecode. (LR parser, AST, ASM, VM, visualization w/ Ncurses)
#### libft
Wrote my own C standard library, about 100 functions
#### fillit
Tetris solver (backtracking, recursion)
#### ft_printf
A fully-featured printf implementation (variadic functions, UTF-8 encoding...)
#### push_swap
A sorting challenge (sorting algorithms, Big O, space/time complexity )
#### lemin
Moving an ant colony from one point to another in the least amount of time (graph theory, BFS/DFS, Max flow)