Skip to content

SrGrace/HactoberFest19

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 

Repository files navigation

HactoberFest19

An Open-Source Repo for HactoberFest-19

Open Source Love Hacktoberfest 2019 GitHub Forks GitHub Stars GitHub Contributors

How to contribute

Begin your program with a comment of why this solution/code_snippet.

Code should be readable and properly indented.

Example:

# Fibonacci algorithm

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)) 

Create your first pull request 👍

Fork this repository

Clone the forked repository from your account

Add your Code Snippet to the respective language folder.

Commit your changes with an appropriate message.

Create a pull request

Releases

No releases published

Packages

No packages published

Languages