Coders Packet

Packets submitted by Shravya Chinta

Program to send an email using Python

In this packet, we write a program for sending an email from one user to another user using Python.

Diabetes Classification Using Machine Learning in Python

In this packet, we design a Machine Learning model that predicts whether a person is diabetic or not in Python.

Prediction of Air Quality Index Using Machine Learning in Python

This packet predicts the Air Quality Index for Pollution Control using Linear Regression with the help of a machine learning technique in Python.

Count the number of Palindromic Substrings in a String using C++

This is a packet that counts the number of Palindromic Substrings in a string using C++. A string or a number is said to be a Palindrome if it reads the same forwards and backward.

Program to add 2 binary strings using C++

This is a packet that returns the sum of 2 binary strings as a binary string using C++.

Program to check if a given string is a Palindrome using C++

A packet to check if a given string is a Palindrome using C++. This program is implemented using 3 methods i.e., reversed string method, using a Stack by implementation, and as a data structure.