top of page
Search
Stringoholics InterviewBit Solution
You are given an array A consisting of strings made up of the letters ‘a’ and ‘b’ only.
Each string goes through a number of operations, whe
Implement StrStr Interviewbit Solution
Implement strStr().
strstr - locate a substring ( needle ) in a string ( haystack ).
Try not to use standard library string functions for
Amazing Subarrays Interviewbit Solution
You are given a string S, and you have to find all the amazing substrings of S.
Amazing Substring is one that starts with a vowel (a, e, i,
Count And Say InterviewBit Solution
The count-and-say sequence is the sequence of integers beginning as follows:
1, 11, 21, 1211, 111221, ...
Longest Common Prefix InterviewBit Solution
Problem Description:
Given the array of strings A,
you need to find the longest string S which is the prefix of ALL the strings in the arra
Palindrome String InterviewBit Solution
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.
bottom of page