23.05.2021
Sudoku
Application - Java - Individual
In order to complete a sudoku grid, the player needs to fill each cell with a number between 1 and 9 with no duplicate in each row, column and square of the grid. The goal of this project was to programm this popular logic-based puzzle game and include it in a user-friendly environment with some automatic features such as the resolution and creation of a grid.
Read the Report See the Code
16.11.2020
Malloc Library
Library - C - Individual
In order to correctly understand how memory allocation works and to improve my programming skills, I developed a malloc library using the c language's system calls. My personnal library implements the functions malloc, free, calloc and realloc but I also added some improvements to enhance the efficiency.
Read the Report See the Code