Coders Packet

Listing of packets of source code submitted by coders

Solving Sudoku using Backtracking and Recursion in C++

This project is focused on Developing the code to solve the sudoku puzzles by using the backtracking and recursion algorithms in C++ language to find the correct solution

Run Length Encoding (RLE) compression and decompression in C++

This C++ program implements Run Length Encoding (RLE) compression and decompression which is a lossless technique for data compression.

Conversion of Decimal number into Hexadecimal number using C++.

In this program, we are going to convert the decimal value into hexadecimal values using the programming language C++. These numbers are used in designing digital circuits.

Building stack using linked list in Python

Implementing various functions of a stack using the singly linked list class in Python

Implementation of Routh's stability analysis using C++

This program can be helpful in finding whether a control system (e.g, used in Cars, Robots, etc.,) is stable or not using Routh's stability criterion. Here C++ programming language is used.

Car Rental Management System using C++

C++ program for a Car Rental Management System in which a user can rent a car of their choice from a Menu

Dictionary Application in Python

This Python Code acts as a real-time Interactive Dictionary that helps enrich the User's Vocabulary.

Video Downloader in Python using Pytube and Tkinter

This code helps you develop a basic video downloader in python using pytube and Tkinter. This downloader allows you to download any YouTube video.

Login and Registration System (C++)

This is a C++ user registration project. Users have to register(give) their private username and password so that all information of the user can be secured.

Javascript QR Code Generator

Build the small "Javascript QR Code Generator" where the user can generate QR and can send the information to other users or can store particular information in code form.

User Defined Exception in Java with an example

Hello Learners, in this article, we will learn about how to create a User-defined exception and exception handling in Java

Performing Quick Sort Using Randomized Pivot in C++

Hello friends, today we'll bring down worst-case time complexities of quicksort, by combining randomization along with quicksort in C++.