Coders Packet

Listing of packets of source code submitted by coders

Random OTP Generator In Python

Here, we implemented a program to generate OTP with a single click in Python. With the help of Tkinter and a random module, we created an OTP generator with little use of the GUI component.

Array implemention of stack using C++ programming

A stack data structure is implemented using 1-dimensional array. Take array of specific size and insert,delete,isempty&display values into array by using LIFO principle with 'top'. Using C++

Random access in File Handling Using C++ Programming Language

This project is based on Random access in File Handling to enter users data in random and to search them. Here I have written code for finding the train number and details of it Using C++ program

Finding Longest Increasing Subsequence using C++ and Dynamic Programming

Here we find the length of the Longest Increasing Subsequence(LIS) using C++ Language and by Dynamic Programming

Power of Two using Bit Manipulation in C++

This is a C++ code to find whether a given number is a power of two or not. It is of a faster time complexity as compared to the one using the modulo operator and logarithmic operator.

QR Code Generator using qrcode in Python

A QR code generator builds QRcode for any data, website, etc in Python. The QR Code can be even placed over an image or can be customized using qrcode module in python.

Centurial leap years using C++

This C++ code is to find out whether a given year is a leap year or not. A leap year can be centurial and non-centurial. The main goal is to clearly detect the leap year.

Volatile keyword in Java.

In this tutorial, We will study the Volatile keyword in Java. We will learn what is the volatile keyword. Why and how we use it. Also, how it is connected to the thread.

Crop Image Using Python

A simple python program to take an image as input and print and the required cropped image using Pillow library.

Implementation of Priority Queues using Java

Using Java programming language, both Minimum Priority Queue and Maximum Priority Queue were implemented (using heaps).

Capturing face of a person using Python OpenCV.

In this project, we will learn how to detect the face of a person and save photos of the face on our device using the Python OpenCV library.

Flight Price Prediction using Machine Learning and Python

Flight price prediction is going to predict the price of the trip. I have designed this project using Machine learning and Python. Machine Learning Algorithm i.e Random Forest Regressor.