Hacktoberfest
Hacktoberfest copied to clipboard
Add your favorite code snippet
Add your favorite code snippet to the repository.
Use any language of your choice to add the code. For example:
# This is my favorite code snippet because it has ties to the Golden Ratio.
def Fibonacci(n):
if n<0:
print("Incorrect input")
elif n==1:
return 0
elif n==2:
return 1
else:
return Fibonacci(n-1)+Fibonacci(n-2)
print(Fibonacci(100))
Put the code in the respective language folder. Refer README.md for help.
added and requested PR for my fav sleepy sleep 😉 😅
@VishalBheda Cool :+1: