Coders Packet

Listing of packets of source code submitted by coders

C++ program to convert a E-NFA to DFA

I have written a c++ program that converts an Epsilon-Nondeterministic finite automaton(e-NFA) to a deterministic finite automaton(DFA).

Five days Weather app with animated .Svg images using React js

It's a Weather app that shows detailed weather-related information and also uses animated .svg images.

Text Extraction from live frame using Tesseract in Python

This packet involves the use of Pytesseract, a powerful OCR(Optical Character Recognition) tool in python, for the classification of characters in a live frame.

Snake and Ladder problem using C++

Snake and ladder is a unique puzzle-like problem. The problem is approached and solved using the BFS(Breadth-First Search) technique in C++ language.

Plotting Graph in Python using Matplotlib

This Python Project is used to plot a Line Graph by using the Matplotlib library. It takes the coordinate's input from the user.

LRU Cache implementaion using C++

LRU Cache uses Least Recently Used concept to maintain the Cache order. It is an important concept to be learned for interview preparation. Here it is implemented using c++

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++.

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.

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.

Calculator in Python

A simple calculator built on Python which can perform mathematical operations based on user input.

Automorphic Number Using C++

Automorphic numbers are those numbers in which the unit's place of the square of a number is equal to the number itself. Similarly, using C++ the program is explained.

Huffman Coding Implementation for Text Files in C++

This project is based on Huffman Coding, a lossless, bottom-up compression algorithm. It can compress and decompress any text files.