You only have free questions left (including this one).
But it doesn't have to end here! Sign up for the 7-day coding interview crash course and you'll get a free Interview Cake problem every week.
You're in!
Write a function that takes
a list of characters and reverses the
letters in place.
Why a list of
characters instead of a string?
The goal of this
question is to practice manipulating strings
in place. Since we're modifying the
input, we need
a mutable
type
like a list,
instead
of Python 2.7's
immutable strings.
Start your free trial!
Log in or sign up with one click to get immediate access to free mock interview questions