Coders Packet

Listing of packets of source code submitted by coders

Radix Sort using Counting Sort in C++

In this sorting method we apply Counting sort to given numbers digit by digit starting from least significant digit to most significant digit.

Python code to create a REST API to log/modify library details in a database

Python code which creates a REST API to log/modify library logs when a user borrows/renews/returns a book, using flask, flask_mysqldb (python), Postman API tester application and MySQL.

Predict Sentiments of Amazon Customers using Python

In this tutorial, we are going to predict the sentiments of Amazon customers using Python. We apply a Logistic Regression machine learning algorithm to our data.

Weather-Application Using Nodejs

Hello everyone! In this tutorial, we deployed a weather application to get information about the weather using Node.js.

DSU using Rank and Path compression in C++

This implementation takes the data structure and uses union by rank and path compression techniques to decrease the find operation to O(1) complexity and union to O(log n) complexity.

2 Player Chess game and engine in C++

This packet contains a 2 player chess game that can be run on the local machine. Technology Stack: C++, STL Library)

Search for a Packet on Coders Packet with BeautifulSoup, Tkinter and Pyinstaller in Python

In this project, we will use beautiful soup to search for packets using a user-defined keyword. We will then create a GUI using Tkinter for the same and convert it to an executable(.exe) file.

Hollow butterfly pattern printing in C++

In this project, I will show you how to print hollow butterfly pattern using for loop in C++ programming language.

Pattern Printing using Loops in C++

In this project, I will show you how to print following pattern using for loops in C++ programming language.

Reverse of a String using stack in C++

In this C++code, we can easily reverse a string using the stacks. once the input is given, it gives the output string in the reverse format.

BMI Calculator in Python

A BMI Calculator will take in the height and weight of the individual and will calculate the BMI of the person.

Python Program to Find LCM

L.C.M is the least common multiple between two numbers or more. And the numbers that we will use should be perfectly divisible by the numbers.