Skip to content

Latest commit

 

History

History
4 lines (3 loc) · 285 Bytes

36-remove-first-and-last-character.md

File metadata and controls

4 lines (3 loc) · 285 Bytes

Problem:

It's pretty straightforward. Your goal is to create a function that removes the first and last characters of a string. You're given one parameter, the original string. You don't have to worry with strings with less than two characters.

Solution