Coders Packet

Listing of packets of source code submitted by coders

BigInt Container Class implemented in C++

BigInt Class is used to store the positive and negative integers which are large-sized with many digits that cannot be stored in a long long int. The programming language used is C++.

0-N Knapsack in C++

It's a problem of 2-D DP of knapsack in C++, in which the weight W and a set of n items with some value's, needs to calculate the maximum amount of a profit from these set of items.

Reverse a string using Python

In this program, We will reverse a string inputted by the user using 'for' loops in Python

Strong Password Generator in Python

The following Python Code aids people who find it difficult to create and memorize strong passwords

Modular Exponentiation in the most efficient way using C++

Here when the user gives (a, n, val ) values, this will calculate the [(a power n)% val] value using C++. It can handle the larger values too.

Keyboard Stroke Recorder Using Python

This Python program will record every action that occurred on the keyboard. This program is mostly used for Parental Control , Company Security, and many other purposes.

Analog Clock using C++ graphics

The Analog Clock project has been designed and developed in the C++ programming language with the help of graphics.h and ctime library.

Mad Libs Generator in Python

Mad libs generator in Python is a fun game that creates a story using the words given as input. User has to enter substitutes for blanks in the story without knowing the story.

Python Script to convert images to thumbnail.

A Python script for converting image files to thumbnail using the Image module of the PIL Library.

Extra Long Factorials in C++

This is a C++ program to find the factorials of numbers that are too big to fit on any data type in C++.

Python Script to get Weather of any city.

Getting current weather of any city with the help of OpenWeather API, requests, and json module in Python.

Longest Palindromic substring in a given String using C++

When the user inputs any string, it gives the longest palindromic substring of the given string( case sensitive ) efficiently using C++ programming language.