Leetcode 1003 Check If Word Is Valid After Substitutions Solution in java | Hindi Coding Community

0

 


Given a string s, determine if it is valid.

A string s is valid if, starting with an empty string t = "", you can transform t into s after performing the following operation any number of times:


Insert string "abc" into any position in t. More formally, t becomes tleft + "abc" + tright, where t == tleft + tright. Note that tleft and tright may be empty.

Return true if s is a valid string, otherwise, return false.




class Solution {
public boolean isValid(String s) {
while(s.contains("abc"))
s=s.replace("abc","");
if(s.isEmpty())
return true;
return false;
}
}


Post a Comment

0Comments
Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Learn More
Accept !