difficulty | OAs | projects |
---|---|---|
newbie | strings | cipher, card validation |
https://the-winter.github.io/codingjs/exercise.html?name=middleThree&title=String-1
Dada uma string de comprimento ímpar, retorne a string de comprimento 3 do seu centro, de modo que "Candy" retorne "and". O comprimento da string será de pelo menos 3.
Exemplo
middleThree('Candy') → "and"
middleThree('and') → "and"
middleThree('solving') → "lvi"
↩️ Voltar