Code Packets
Browse all published coding projects
Memory Card Game Using HTML, CSS & JavaScript
In this fun project, we are going to create a memory cards game using simple HTML, CSS & JavaScript.
An Unbeatable TicTacToe AI in Python using minimax algorithm
This is a command-line TicTacToe game written in Python where the player faces an unbeatable AI.
CASINO GAME IN C++
In this project, I will implement a simple number guessing game, casino in the C++ programming language. The player can wish to play the game as long as he/she has money left with them.
TIC TAC TOE GAME IN C++
In this project, we will learn how to implement the tic tac toe game in C++. Basic for loops will be used to check which player has won the game or if it is a draw between them.
Binary Search Using STL in C++
Binary Search in C++ using binary search function present in STL(Standard Template Library).
DFT-IDFT module in MATLAB
Module to find the DFT and IDFT of sequences x(n) in MATLAB language without using Inbuilt functions.
N Queen Backtracking game in C++
A simple game using the N Queen Backtracking Algorithm in C++ to explain the working of an algorithm and file handling.
Rotation Of Array In C++
This project performs the Array rotation in C++ language, totally dependent on the user input to rotate the array, and finally, the resultant rotated array is produced.
Segregation of Positive and Negative elements of an Array using C++.
This is a packet used for separating the negative and positive elements present in an Array using while-loop and if-else statements in C++ language.
C# code for Country and Capital API
This packet contains C# code for creating Web API for extracting countries and their capitals.
Longest Unique Characters Substring using unordered_maps in C++ laguage
Finding the length of the longest substring that can be formed from a string with unique characters using an unordered map library in C++
Text Compression using Python
Code in Python compresses a .txt file into a .bin file where the compressed file is approximately 50% of the size of the original file. or decompresses the .bin to .txt file.