Code Packets
Browse all published coding projects
NLP Chatbot using Python
This project uses NLP to create a chatbox that uses Wikipedia articles to fetch written data and create a chatbox.
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).
Product purchase prediction using K Nearest Neighbors classification model in Python
This project makes use of the KNN concept in order to predict whether a product will be purchased by a customer based on their age and estimated salary.
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.
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.
Mini student Wikipedia using Tkinter in Python.
This project is aimed at creating a mini student-friendly Wikipedia using the Tkinter library and Wikipedia module 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
Rock-Paper-Scissors-Game Using Java
It is a simple game . In this game , the user chooses a choice of Rock or Paper or Scissors to compete with System.
Coin Game Using Java
It is a simple game. In this Coin Game, the user guesses whether a flipped coin is head or tail.
Text to Speech in Java - Project
A project in Java to convert text to speech in java using free TTS. Users can provide the text to be spoken by the system.
College Enquiry System using Flask in Python
College Enquiry System is a web application where the students can enquire about the courses they want and lock the seat if the course is available.
BitMasking basic operations in Java
This code is useful for performing basic operations like clearing ith bit, setting ith bit, and finding ith bit using BitMasking Techniques.