Click Below to subscribe

Check two strings are Anagrams or not - Anagram Finder

Given two strings S1 and S2. check if they are anagrams or not.#Implementation -...

READ MORE

Generate look and say sequence - Look-and-Say

Given a number n, generate look and say sequence.  1, 11, 21, 1211...... n;funct...

READ MORE

Swap two array without using third array of same size.

Given to array of a and b of the same size. swap arrays without using temp array.#Imp...

READ MORE

Swap two strings without using third variable.

Given two strings S1, S2 swap it without using temp variable.substring(start, end)&nb...

READ MORE

Reverse a string without affecting special characters.

Given a string S, that contains special characters with alphabets, reverse the string i...

READ MORE