Coders Packet

Packets submitted by Ashutosh Sunil Rane

Count Subarray with Sum Equal to K using Map in C++

This article will see how we can count the total number of subarray with a sum equal to K in linear time complexity using a hash table.

Remove all elements by value from a vector

In this program, we will see how we can remove all the elements of a particular value in a specified range from the vector.