A=B
Not enough ratings
Radioactive Collection
   
Award
Favorite
Favorited
Unfavorite
Description
A collection of puzzles involving the radioactive "#" character.
Items (5)
Is Radioactive
Input: A string of "a", "b" and "#". Output: Return "true" if the input contains a "#". Otherwise, return "false". Constraint: 1 <= Input length <= 7 Keywords are allowed....
Is More Radioactive
Input: A string of "a", "b" and "#". Output: Return "true" if the input contains two or more non-consecutive "#". Otherwise, return "false". Constraint: 1 <= Input length <= 8 Keywords are allowed....
Radioactive Remove Third
Input: A string of "a", "b" and "#". Output: Remove the third non-"#" character. Constraint: 4 <= Input length <= 9 There is exactly one "#". Keywords are allowed....
Radioactive Sort
Input: A string of "a", "b" and "#". Output: Sort the input in alphabetical order. "#" < "a" < "b". Keywords are accepted....
Radioactive Cleanup
Input: A string of "a", "b" and "#". Output: The input string with all "#" characters moved to the start. Constraint: 1 <= Input length <= 7 Keywords are allowed....