Inspiration

MLH LHD Build

What it does

Reverse a string

How we built it

python

Code

def reverse(s):
  str = ""
  for i in s:
    str = i + str
  return str

Built With

Share this project:

Updates