Problem 42720. Breaking Bad Tiles (Spelling with Element Symbols)
Given a word, how you would spell it with element symbols from the periodic table? For instance, if given the string "Paper", you could return these symbols: Pa P Er (Protactinium, Phosphorus, Erbium).
I'll give you a string, and you return a cell-array of strings. The answer is not always unique. I'll check that you use only element symbols, and that when they are glued together they spell the right string.
Examples
'Paper' => {'Pa','P','Er'}
'America' => {'Am','Er','I','Ca'}
'Paige' => {'Pa','I','Ge'}
The test suite is case-insensitive. Only strings with possible solutions will be supplied.
Solution Stats
Problem Comments
-
1 Comment
Rafael S.T. Vieira
on 12 Oct 2020
It's unfortunate that not all names can be build with the periodic table. I've tried this as a kid. The best that I can do with my name is RaF or RaFAl.
Solution Comments
Show commentsProblem Recent Solvers18
Suggested Problems
-
Is my wife right? Now with even more wrong husband
1322 Solvers
-
Project Euler: Problem 5, Smallest multiple
1339 Solvers
-
Create a square matrix of multiples
475 Solvers
-
Calculate the area of a triangle between three points
2939 Solvers
-
Magic is simple (for beginners)
9189 Solvers
More from this Author50
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!