Coders Packet

Listing of packets of source code submitted by coders

Kruskal's Algorithm for Minimum Spanning Tree in C++

A packet in C++ which helps finding minimum spanning tree. It is subset of connected edge-weighted graph that connects all vertices together without cycles and minimum total edge weight

EMOJI MEMORY MATCHER USING JAVASCRIPT

The project is a matching game where the player has to match the two similar emojis in the given grid. The project is made using JavaScript.

Predicting the Optimum Value of Clusters in K Means Algorithm in Python.

Predicting the Optimum Value of Clusters in K Means Algorithm with the help of the Elbow method in Python.

Encryption Decryption using C++

This small project implements the concept of encrypting user-entered text and decrypting it later using C++.

Playing Audio Files using AuidoInputStream, AudioSystem class and Clip interface in Java

This is a source code which plays an audio file in Java programming language. AudioInputStream, AudioSystem class and Clip interface are used.

Number Guessing Game using C++

This is a simple Number-guessing game in which the user has to guess a number generated by computer in stipulated number of chances. This is implemented in C++.

Wine Quality Prediction using Machine Learning & Python

This project contains the Jupyter Notebook and the Python language code. In this, we are predicting the quality of wine using different supervised machine learning algorithms.

Sudoku Solver using Backtracking in C++

This packet uses the approach of backtracking in C++ for solving the sudoku for an NxN matrix i.e, 4x4, 9X9, 25x25. Due to implementation in C++, the execution is relatively faster.

Creating a Puzzle Game 2048 In C++

Hi friends, Today let us see how to create a single-player sliding puzzle game 2048 using C++.

strchr() function in C++

In this tutorial, we will learn about strchr() function in C++. It is a predefined function and is present in the cstring header file.

TCP/IP Protocol using C++

This project consists of a client and a server communicating using TCP/IP protocol. This network uses Sockets created using C++ for proper communication.

Class Stack implemented through array class in C++

In this project, we will see how we can implement a stack using an array through a class in C++.