Write a C program to check if the given string is repeated substring or not. ex 1: abcabcabc - yes (as abc is repeated.) 2: abcdabababababab - no
Given a dictionary of strings and another string find out if the string is an exact match to some words in the dictionary or varies at most in only one place of some word of the dictionary?
Given a string, add some characters to the from of it so that it becomes a palindrome. e.g. 1) If input is "abc" then "bcabc" should be returned. 2) input -> "ab" output -> "bab" 3) input -> "a" output -> "a"