Coders Packet

Packets submitted by RANJITH RAMAMURTHY TEVNAN

Dynamic Range Sum Queries in C++

Given an array of n integers, and given q queries, 1. update the value at position k to u 2. what is the sum of values in the range [a,b]?

Convert a string of Uppercase Letters to a Palindromic string in C++

This code takes a string with all Uppercase Letters and tells if its reordering can give a palindromic string(And tell if it is impossible). This code is written in C++.

Book Cricket game implemented in C++

This is a project implementing the Book Cricket game in C++. Book Cricket involves using the random page number of the book to calculate runs scored.

C++ implementation of Pattern searching in a string in an efficient way

This is a C++ code which helps in detecting a pattern in a given string in a very efficient way. It takes two strings as input. First input is the pattern and the next one is the string(Text).