Code Packets
Browse all published coding projects
Stack implementation of linked list. Using C++ programming.
Stack implementation of the linked list. It is a data structure and the stack follows the last in first out technique. Using C++
An app to track Amazon Prices in Python
A Python application that tracks the Prices of an Amazon Product and sends an email every time there is a price drop.
Application of stack infix to postfix. Using C++ programming language
Application of stack infix to postfix which follows last in first out and it is a linear data structure. Using C++ programming language
ARRAY IMPLEMENTATION OF QUEUES Using C++
ARRAY IMPLEMENTATION OF QUEUES Using rear and front. It is a linear data structure and it follows the first in first out technique. Using C++ Programming Language.
To Find the Sum when a number is appended to itself n number of times in Python
Python program to calculate the sum when a number is appended to itself n number of times.
Calculator in Python
A simple calculator built on Python which can perform mathematical operations based on user input.
Replacing First Element with Middle Element of a String in Python
Python Program to remove the middle element of a string which is got from the user and replacing the first element with that middle element
Program to Find True Discount In Python
Python program to find True Discount and Present worth when amount, Rate of interest, and time are given.
NMap Scanner - Python
This is simple Python automation of NMap Scanner. This Project helps in finding whether the ports are opened in the device, IP address of that device is given as input.
Quick Sort using C++programming language.
QuickSort follows the divide and conquer algorithm technique. It picks an element as a pivot and then it splits the given array around the picked pivot. element and then it is sorted. Using C++.
Quadratic Equations Roots using C++ program
Quadratic equations are in the form- a(x*x) + b(x) + c =0. Finding the value of x which satisfies the equation are called roots. Let's find them using C++ program.
Floyd Triangle Program in C++
Floyd's triangle, named after Rober Floyd. It is a right-angled triangle or triangular array, which is made using natural numbers. Let's create a C++ program to print this pattern.