I have written a c++ program that converts an Epsilon-Nondeterministic finite automaton(e-NFA) to a deterministic finite automaton(DFA).
It's a Weather app that shows detailed weather-related information and also uses animated .svg images.
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 is a unique puzzle-like problem. The problem is approached and solved using the BFS(Breadth-First Search) technique in C++ language.
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 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++
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++.
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.
Python program to find True Discount and Present worth when amount, Rate of interest, and time are given.
A simple calculator built on Python which can perform mathematical operations based on user input.
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.
This project is based on Huffman Coding, a lossless, bottom-up compression algorithm. It can compress and decompress any text files.