Hacktoberfest icon indicating copy to clipboard operation
Hacktoberfest copied to clipboard

Add your favorite code snippet

Open sukhdeepg opened this issue 6 years ago • 2 comments

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.

sukhdeepg avatar Oct 01 '19 16:10 sukhdeepg

added and requested PR for my fav sleepy sleep 😉 😅

VishalBheda avatar Oct 01 '19 17:10 VishalBheda

@VishalBheda Cool :+1:

sukhdeepg avatar Oct 01 '19 17:10 sukhdeepg