Skip to content

Latest commit

 

History

History

challenge_1

#Reverse a String

##Premise

  • For this coding challenge, your task is to reverse a string for any given string input.

Example: Given s = "hello", return "olleh".

  • Try to make the solution as short and simple as possible in your respective language of choice.

##Testing

Expected intput:

hello

Expected output:

olleh