Coders Packet

Listing of packets of source code submitted by coders

Classification of Images using Convolutional Neural Networks (CNN) in Python.

The project classifies images using CNN on Fashion MNSIT and CIFAR-10 dataset present in Tensorflow library in Python.

GUESS THE NUMBER GAME USING PYTHON

GUESS THE NUMBER GAME IN PYTHON In this particular project, I designed a small game. In this game, the system selects a random number and the user has to guess it correctly.

Generation of Regular paper folding sequence using Python

Generation of regular paper-folding sequence (dragon-curve) until a given number in Python

Multiplication of Large numbers using Strings in C++

Sometimes multiplication of two numbers cannot be stored due to the size limit. We solve this problem by using Strings in C++.

Validating Given IP Address in C++

we check whether the given IP address is valid or not using this algorithm in C++. In this project, we used IPv4 addresses, which consist of four decimal numbers ranging from 0 to 255.

KMP Algorithm for Searching in C++

Pattern searching is a common requirement when we do search for a string in notepad/word file/browser/database, Here we use pattern searching algorithms in C++ to search.

Median of Two Sorted arrays in C++

To find the median of two different data without using extra space in C++. we use this algorithm. For eg: if we need a median of salaries given between two different batches.

Shift Reduce Parser Using C++

Shift Reduce Parsing is a way to reduce a string to the start symbol of a grammar. It. It is mainly used for the error-checking process. The code is done in C++

Length of Longest common subsequence using C++

This program is built in C++ which finds the length of the longest common subsequence among two given input strings. The project is made by using Dynamic Programming methods.

Text to Speech Converter using Python Programming Language

Text to Speech converter will convert pdf files into mp3 format. This python program aims to save your time as huge chunks of content consume lots of time to read and understand.

Personal Resume Website using HTML, CSS, JavaScript, Bootstrap

This is a personal resume website that is built using technologies such as HTML, CSS, JavaScript, and Bootstrap.

Vigenere Cipher in C++

Vigenere cipher is one of the most popularly used alphabetic cipher. This program implements Vigenere cipher in C++.