Coders Packet

Listing of packets of source code submitted by coders

Lisp programming language in C++

This project aims to implement a lisp-based programming language in C++ which we chose to call Lispy.

Implementing K-Means Clustering Algorithm in C++ with an Example.

In this project, K-Means Clustering is used to group Mall Customers based on their age, Annual Income, and Spending Score. C++ 17 is used.

Security System(C++)

This is a C++ project which involves a saved(private) password in a file and when we enter the right password then we can able to access the data inside the file.

Chatroom using socket programming and multi-threading in C++

Chat application written in C++ that uses sockets and multi-threading to communicate among multiple users.

CGPA calculation using C++.

This project is used to calculate Cumulative Grade Points Average(CGPA) by accepting the number of subjects, marks, and credit points using C++.

C++ program to print all the possible permutations of a string.

This packet implements the algorithm to find all the possible permutations of a string in C++

Hangman Game using Python

This is a two or more player hangman game in python. It allows each of the players to enter a sentence/movie name while the rest try to guess the correct answer.

Convert Text to Speech using Python

A Python Script to convert text to speech using Google's text to speech API commonly known as gTTS API.

Spelling Checker in Python

A simple python program to check for incorrect spelling and print the correct spelling using TextBlob.

Creating Directory in Python

This Python code helps to create a directory to the desired location. We can give any name to the directory.

Implementation of Linear regression algorithm with gradient descent function using C++

In this program, we are going to predict results from real-life data using the linear regression algorithm. Here C++ programming language is used.

Check whether a binary tree is a binary search tree(BST) in C++

We will be given a binary tree as an input and its root node, than we should examine whether it is a binary search tree (BST) or not in the C ++ programming language.