Code Packets
Browse all published coding projects
Rock paper scissors in Python
Play classic game rock paper scissors against a computer in Python. This program randomly selects one of rock, paper, scissors and asks the player to select one.
Different Types of Sorting Techniques In C++
C++ code in which a user can choose different types of sorting techniques like bubble sort, selection sort, insertion sort, quick sort, merge sort, and heap sort to sort an array.
Solving Sudoku using Backtracking and Recursion in C++
This project is focused on Developing the code to solve the sudoku puzzles by using the backtracking and recursion algorithms in C++ language to find the correct solution
Simple Dice Simulator using Python
This code in Python simulates the rolling of a Dice using Tkinter. The Dice is a primary component in various fun games like Ludo, Checkers, etc.
Registation Form in Python
This is the Registration Form created with the help of the Python and Tkinter module. In this registration form, you have to fill in all the details. otherwise, it will not submit your form.
Hello World without using semicolon in C++
C++ Program to print something without using semicolon (;). This type of programs generally asked in Company/any competitive exams.
Password generator using Python and Tkinter
This is a code for a password generator using python based on the user's choice of character sets. It also contains a GUI designed using the Tkinter module of python.
Password generator in Python
In this project, we will learn how to generate a password using python. We use the "random" function in this code.
Login and Register System using File handling in C++
This project is built in C++ programming language, it uses file handling and lets the users login and register into the system, each user has their unique username.
Check whether the given number is a Duck number or not in Java.
In this project, we are going to check whether the user entered number is a Duck number or not in Java language. We will learn what is a Duck number, what functions and methods we have used.
Scientific/BMI/Age/Length Calculator in javascript using React js library.
Made a Scientific ,BMI,Age,Length calculator using javascript Library i.e React js.Inspired by Mi calculator UI.
K Nearest Neighbor from Scratch using Python
The purpose of this project was to present the inner workings of K Nearest Neighbor for better understanding using Python.