Question: Given a string, with certain lowercase letters. You are allowed to do at most one operation on this string, where, you can delete an entire
Given a string, with certain lowercase letters. You are allowed to do at most one operation on this string, where, you can delete an entire substring from the given string. You need to tell, by doing the abovementioned operation at most once, can you create the string"programming" from the given string.In case you can, print Yes, else, print No
Input Format The first line of input contains a single integer T denoting the number of test cases. Then, T strings follow. For each of those strings, you need to tell, if you can generate the substring "programming", by doing the given operation at most once.
Output Format Print T lines, where each line shall contain a single string Yes if the job can be done or No if the job cannot be done Constraints T string size E Examples Input:
programming
abcdprogramminabcd
rammingabcdprog
progabcdramming
Output:YesNoNoYes
Explanation:In the given example we have test cases.In the st test case, string "programming", we already have "programming" string.In the nd test case, string "abcdprogrammingabcd", we can't obtain "programming" in at most operation. We would need operations to make it "programming" by deleting "abcd" prefix and "abcd" sufix.In the rd test case, string "rammingabcdprog", we can't obtain "programming" in any number of operations.In the th test case, string "progabcdramming",, we can deletethe substring "abcd" to make it "proarammina".Given function: static String canDeleteSubstringString givenstrings Write your code here
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
