Coders Packet

Listing of packets of source code submitted by coders

Sorting and Searching in Java

Sorting an unsorted array using Bubble Sort and Searching for a key in a sorted array using Binary Search in Java.

A Report Card Making System in C++

Preparing report cards for many students in C++. A report making system use for teachers to prepare report cards for all students.

Multiple Inheritance in C++ and JAVA

We are going to be focused on the topic - Multiple Inheritance in C++ and JAVA with the help of examples.

GUI Dice Simulator in Python Using Pygame

It is a simple GUI-based dice simulator developed in Python using Pygame which simulates dice roll outcomes.

Implementation of Floyd Warshall algorithm using Java

In this tutorial, we will learn about the Floyd Warshall algorithm and we will also see the program to implement the Floyd Warshall algorithm using Java.

SINGLE SOURCE SHORTEST PATH USING B.F.S. USING C++ PROGRAMMING LANGUAGE.

For a given unweighted graph find the distance between source and destination. USING C++ PROGRAMMING LANGUAGE.

Staircase Search In 2 D-Array Using C++ Programming

Searching of a key in array using Staircase Search in 2-dimensional-Array using C++ Programming Language.

TOPOLOGICAL SORT USING B.F.S GRAPH USING C++ PROGRAMMING LANGUAGE

Topological sorting is graph sorting in which the parent edges come before the children's edges. USING C++ PROGRAMMING LANGUAGE.

Voice to Text using deepspeech api in Python

We will be using deepspeech in this python code to generate the text from a voice. Deepspeech is an open-source api for Speech to text.

Simple Calculator in Java using Java Swing

This Project is done in Java using Java Swing concept. It does all the functionalities of a basic calculator and it is built using Java Swing, which makes it platform independent.

Reverse Of String Using STL In C++

This project performs string reverse using STL in C++. The string is accepted, the reverse operation is done, and characters are pushed back in the string. The resultant output is produced.

Plot of Sphere using Python

Program to plot a sphere for given coordinates with the help of NumPy and Matplotlib libraries, using Python