Coders Packet

Listing of packets of source code submitted by coders

Checking duplicate elements in an user define array in Python

This Python program will check if there is any duplicate element available in the given array, which will be given by the user.

Matrix Subtraction with user inputs using NumPy with Python

Here we are subtracting two matrices, which will be given by the user using NumPy in python.

Lowest Common Ancestor in Binary tree - Python

Python program to find Lowest Common Ancestor (LCA) of n1 and n2 using one traversal of Binary tree

Prim's Algorithm MST implementation in Python

Given module calculates the minimum spanning tree for a graph using Prim's algorithm. This algorithm is implemented using heapq module.

Python script to fetch current crypto currency price

This piece of code will scrape the google search result and find the current crypto price.

Python script to sort elements in Ascending or Descending order

Here user inputs a list of integers or floats or strings along with sorting type. The program outputs the sorted list according to specified sorting type i.e. Ascending or Descending order

Rolling a Dice and Printing the Pattern of the Dice using Python

Here, we are rolling dice and printing the pattern of the dice in the terminal using python.

How to create an online calculator using HTML, CSS and Javascript

This is an online basic calculator that can evaluate and perform basic arithmetic operations.

How to create a login page with React JS

This is a simple login and registration page made with React JS, HTML5, CSS3, and Javascript

Sparse Table Range Minimum Query Implementation in Python

Given module finds the minimum element in an array between position i to j. RMQ can be used in problems directly or can be applied to implement other task like the Lowest Common Ancestor problem.

SCREEN RECORDER USING PYTHON

Python is a widely used language and easy to implement and it have many modules and we have to import it , but in this scenario we used pyautogui and numpy

Linear Regression In Python With Dataset

Linear regression is a linear model, e.g. a model that assumes a linear relationship between the input variables (x) and the single output variable (y).