Coders Packet

Listing of packets of source code submitted by coders

Reverse a linked list using C

In this article, we will discuss the method and program to reverse a linked list using the C programming language.

Sentiment Analysis Using Python and NLTK

This project contains the Jupyter Notebook, Python language and, NLTK. In this project, we are predicting the positive & negative sentiments from the Twitter data.

Uber Data Analysis using Python

This project includes the Python language and Jupyter Notebook. In this project, we compare and analyze different data of uber analysis.

Longest Common Prefix String in C++

In this tutorial, we are going to learn how to find the longest common prefix string amongst an array of strings in C++.

Arithmetic Operations of Neighbor Numbers in Python

Performing Arithmetic Operations like Addition, Subtraction, Multiplication, Division and modulo division on neighbor numbers of a particular number using Python language.

Capitalizing First and Last Letters of a String in Python

Python Program to convert first and last letters of a string into uppercase and remaining letters to lowercase.

Country Wise Visualization and Prediction of COVID-19 using ML

The main aim of this project is to visualize and predict the number of confirmed cases of COVID-19 country wise in state level by using Machine learning in Python.

Digital Clock using C++

The project implements a digital clock on the console using C++, showcasing the current time.

Digital Clock using Tkinter in Python

The purpose of this project is to build a Digital Clock using Tkinter in Python language which will display the time in 12-hour clock format and the corresponding meridian.

Greatest Common Divisor(GCD) using Euclid's algorithm in C++

Two numbers given as input and we have to print greatest common divisor. Euclid's algorithm used for better time complexity.

N-Queen problem using C++

N-Queen problem is an important problem that uses recursion and backtracking. It inputs the board size and gives the output where the queen can be placed in a 2d array.

String Tokenizer in C++ using strtok()

In this Packet, we will learn about strtok() function in C++. The function is present in the cstring header file.