Code Packets
Browse all published coding projects
BMI Calculator in C++
BMI stands for Body Mass Index. Body mass index (BMI) is a measure of fat present in a body. So here, we will compute the BMI of a person using C++.
Phone_Book Application in Python 2
This is a desktop base phone book application developed on python 2 using Tkinter which is a GUI library for Python
ATM machine using class and object in C++
It is an ATM machine program using C++. In this program, some basic functions of ATM machine are performed (such as credit amount, withdrawal the amount ).
Implementation of Singly linked list in Java
In this guide, you will learn how to implement a Singly linked list in Java. You will also learn about the operations that we can possibly perform with the Singly linked list.
winner of the tic-tac-toe game using C++
This project is about finding the winner in Tic-tac-toe game using C++. Tic-tac-toe is played by two players A and B on a 3 x 3 grid.
Clockwise/Anti-Clockwise Spiral Matrix in C++
Hello Everyone! In this article, we will learn how to unwind and print spiral matrices in both clockwise and anti-clockwise direction using C++
Median of Two Sorted arrays in C++
To find the median of two different data without using extra space in C++. we use this algorithm. For eg: if we need a median of salaries given between two different batches.
Diffie-Hellman algorithm implementation in Python
In this tutorial, we are going to implement the Diffie-Hellman key exchange Algorithm in Python.
Hash Table and its Operations(Insert, Delete, Search, Display) in C++
This is an algorithm for creating the Hash Table, Inserting elements into Hash Table, Searching Elements in Hash Table, and Deleting Elements in Hash Table by using C++.
Nth Fibonacci Numbers Using Recursion in C++
This code will find nth fibonacci numbers in C++ using recursion function("int nth_fibonacci(int n)") including 0 as the first term.
KMP Algorithm for Searching in C++
Pattern searching is a common requirement when we do search for a string in notepad/word file/browser/database, Here we use pattern searching algorithms in C++ to search.
To-Do list using File in Python
This is a To-Do list project created in Python which uses a file as a storage medium.