Code Packets
Browse all published coding projects
Vigenere Cipher Encryption Using C++
Vigenere cipher is a basic poly-alphabetic substitution cipher and it is implemented here using C++.
Binary search tree class in Python
Implementing the functions of a binary tree class such as inserting, deleting, and printing the nodes using Python
CHAIN HASHING USING C++
In this C++ program Hashing function maps keys to value and chain hashing avoids collision of mapping two or more keys to the same value.
Rock, Paper, Scissors Game in Python
This is the old school "rock paper scissors" game (in python) where the user plays with the system
SUDOKU SOLVER IN C++
A given Sudoku problem in solved in C++ language using the backtracking algorithm provided that the solution exists for problem entered in the program.
Motion Detection using OpenCV in Python
An interesting python project involving the use of a cv2 module for detecting the motion by using the difference in the frame technique.
Caesar Cipher Using C++
Caesar cipher is a basic substitution cipher that uses a key for encryption/decryption and it's implemented here using C++.
Stocks' Discord Bot in Python
This project of Stocks Discord Bot provides all information about stocks of desired company in discord channels messages using python library yfinance.
Loop Detection in Linked List using C++
Using Floyd's Algorithm in C++ language to detect loop or cycle in a Linked List which we build ourselves
Tower of Hanoi program in C++ using recursive function
This C++ program will help you to transfer the entire stack of discs from the source to the destination with the help of the intermediate rod.
Message decoder using Python
This is a basic Python code that can be used to decode messages encoded by the Secret Message Encoder.
Twitting application using JavaScript
A web application that serves a user a lot of inspirational quotes and lets the user tweet the quote on his/her Twitter handle. No external libraries were used. Only an API key is used.