Coders Packet

Listing of packets of source code submitted by coders

Sudoku Solver using the Backtracking Algorithm in Python

This Sudoku Solver Project implemented in Python uses the Backtracking algorithm to find a solution to any solvable sudoku board

Replacing First Element with Middle Element of a String in Python

Python Program to remove the middle element of a string which is got from the user and replacing the first element with that middle element

Shop Management System using Data Structures in C++

This is a console based shop management system using hashing and other data structures in C++. This made the complete working of shop digital.

Pascal Triangle Program in C++

Pascal's triangle is a number pattern in the form of an array constructed by summing adjacent elements in preceding rows. Let's create them using a C++ program.

Floyd Triangle Program in C++

Floyd's triangle, named after Rober Floyd. It is a right-angled triangle or triangular array, which is made using natural numbers. Let's create a C++ program to print this pattern.

Quadratic Equations Roots using C++ program

Quadratic equations are in the form- a(x*x) + b(x) + c =0. Finding the value of x which satisfies the equation are called roots. Let's find them using C++ program.

Creating an alarm clock in C++

Hi friends, Today let us see how to create an alarm clock in C++ using inbuilt Beep function

Text To Speech Converter Using Python

In this project, natural language processing and some external API is applied to text In order to generate synthesized speech. This project was made using Python.

Know your Zodiac Sign using Python

This Code in Python allows the user to know his/her Zodiac sign by taking birth date and month as input.

ASCII Art using Python

In this article, we're going to create an ASCII Art using python module pyfiglet that will make your coding experience much creative.

OTP Checker using Java

Check and Verify One Time Password automatically generated on random basis by the system using Java.

Set of Question on Dynamic Programming in C++

It's a set of most famous interview question of Dynamic programming eg. Coin change Combination/Permutation & Buy and Sell stocks with all of its type in C++