Coders Packet

Listing of packets of source code submitted by coders

Tic Tac Toe using C++ and 3d matrix

TicTacToe is a game where two players to put Xs and Os in compartments of a matrix. It is made using 3x3 matrix.

Finding Next Greater Element In C++ Using Stack

In this tutorial, you will learn stack methods like push(), pop(), and how to use vector over array for avoiding wastage of memory.

C++ Program to Find Smallest Element in the Array

This is a C++ program to find the smallest element in the array. with the help of the loop, we are going to execute this program.

Digital library in HTML, CSS, JavaScript and PHP

It is a complete web development project in JavaScript and PHP in which students can easily login and gain knowledge by reading books

C++ Program to Sort Elements of Array in Ascending Order/Increasing Order

This is a C++ Program to Sort Elements of an Array in Ascending Order/Increasing Order with the help of the sort() function, we are going to execute this program

Bank Management System in C++ Using Linkedlist.

Here the user can perform all the tasks like creating an account, deposit amount, withdraw amount, listing all acount holders detail, and close an account.

JavaScript Action Game

An action Game Website built using pure HTML, CSS and JavaScript without using any eternal library.

Stream application to visualise performance of a Neural Network in Python

This streamlit application is implemented to visualise the data and the predictions made by a neural network model. This packet includes the Python code and the dataset.

Mental Health Guide - Chatbot in Python using Natural Language Processing

This is a chatbot developed using Python. The chat bot carries conversation with the user and offers mental heath support.

Remove Consecutive duplicate characters from a string in Java using recursion.

In this tutorial, we will learn how to remove duplicate characters from a given string using the Java program. We will learn it using recursion method.

Python password strength checker

This is a password strength checker built using Python language. It takes the password as input and result the review of the strength of the password created.

C++ Program to Sort Elements of Array in Descending Order

This is a C++ Program to Sort Elements of an Array in Descending Order with the help of the sort() function, we are going to solve this problem