Category: string
Validate if a given string can be interpreted as a decimal number. Some examples: “0” => true ” 0.1 ” => true “abc” => false “1 a” => false …
Balanced strings are those who have equal quantity of ‘L’ and ‘R’ characters. Given a balanced string s split it in the maximum amount of balanced strings. Return the …
You are given a string s that consists of lower case English letters and brackets. Reverse the strings in each pair of matching parentheses, starting from the innermost one. …
You are given two strings s and t of the same length. You want to change s to t. Changing the i-th character of s to i-th character of …
Given a paragraph and a list of banned words, return the most frequent word that is not in the list of banned words. It is guaranteed there is at …