Coders Packet

Packets submitted by Shaik Jafar

Efficient String searching using C++

This project gives the positions in the string ( input by the user ) at which a pattern string ( input by the user ) is matched, using C++ programming language.

Longest strictly increasing Subsequence of an array using C++

This project gives the longest possible strictly increasing subsequence of an array which is input by the user using C++ programming language.

Number Guessing Game using C++

This is a simple Number-guessing game in which the user has to guess a number generated by computer in stipulated number of chances. This is implemented in C++.

Minimum or Maximum value in a range of an array efficiently using C++

User inputs an array and this can give the minimum or maximum value in the range L to R of the array according to the queries given by the user, using C++ programming language.

Longest Palindromic substring in a given String using C++

When the user inputs any string, it gives the longest palindromic substring of the given string( case sensitive ) efficiently using C++ programming language.

Modular Exponentiation in the most efficient way using C++

Here when the user gives (a, n, val ) values, this will calculate the [(a power n)% val] value using C++. It can handle the larger values too.