Skip to content

Ada-C7/string_reverse

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

String Reverse

In this assignment, you'll design and implement one of the string manipulation functions that is commonly asked during interviews. Remember that a string is an array of characters. Algorithms that worked on restricted arrays will work on strings as well.

Exercise

  • Design and implement a method to reverse a string in place. For example, if the method is called with input parameter of "Lovelace", the method should update the input string object to have the value "ecalevoL".
  • Share and explain the time and space complexities for your solution.
  • At minimum, your implementation should pass the basic tests.

Note: Do not use Ruby provided functionality for .reverse and .reverse!. You may use .length.

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%