Skip to content

Commit

Permalink
Merge pull request YearOfProgramming#146 from acronymcreations/master
Browse files Browse the repository at this point in the history
Challenge 0 complete
  • Loading branch information
Remillardj committed Jan 4, 2017
2 parents 851053a + c2d6067 commit 18db558
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions challenge_0/python/acronymcreations/src/hello.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print 'hello world'
5 changes: 5 additions & 0 deletions challenge_1/python/acronymcreations/src/challenge1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
def reverse(str):
if len(str) == 1:
return str
else:
return reverse(str[1:]) + str[:1]

0 comments on commit 18db558

Please sign in to comment.