Coders Packet

Listing of packets of source code submitted by coders

How to calculate power of a number in minimum time complexity through recursion using JAVA

In this tutorial, we have to calculate the power of a number with minimum time complexity through recursion using the JAVA programming language.

How to print a hollow pattern in JAVA.

Printing hollow pattern using JAVA programming language while taking a number of rows and columns as an input.

Temperature forecasting in Python using Linear Regression

The project aims to describe the relationship between inside and outside temperature (y(inside)=mx(outside)+c) in Python using Linear Regression.

Text Compression using Python

Code in Python compresses a .txt file into a .bin file where the compressed file is approximately 50% of the size of the original file. or decompresses the .bin to .txt file.

Speech to Text Conversion using SpeechRecognition Library in Python

This project aims at converting the recognized input that is speech from user and converting it into text .

Implementation of Stack and Queue using Linked lists in C++

This packet of code deals with data structures especially Stack and Queue, along with their basic operations.

Z Algorithm Implementation in C++

Z Algorithm is a pretty fast Pattern Matching Algorithm. It searches for a pattern in a text, and its time complexity is O(m+n). I have implemented the Z-algorithm in c++.

Program to check whether a year is Leap Year or not in C++

Hello Readers!! Today, we will learn how to check whether a year is a leap year or not in C++.

Morse Code Converter using Python

I design a morse code converter using python which is nothing but represent alphabet or code in combinations of sound signals or light

Banking Statement using copy constructor in C++

This code helps to understand the concept of copy constructor using C++. A copy constructor is used to when an object is initialized from an existing object.

Acronym Generator using Python

Acronym Generator will take a String as an input and it will return the initials of all the words in the String.

The Bisection method using Python code

In this guide, we will learn the implementation of the Bisection method for finding the real root of a non-linear polynomial equation using Python.