Gauri0799 / Hacktoberfest-2

Share your favorite code snippets! Hacktoberfest 2019! πŸ’»

Home Page:https://github.com/sukhdeepg/Hacktoberfest

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

I'm archiving this repository because pull request made over here won't be counted in Hacktoberfest anymore. Sorry for inconvenience and happy contributing.

Open Source Love Hacktoberfest 2019 GitHub Forks GitHub Stars GitHub Contributors

Your Favorite Code Snippet

Collection of code snippets that can be anything from hello world to Complex Algo & DS (In any programming language).

How to contribute

Begin your program with a comment of why this is your favorite code snippet.

Code should be readable and properly indented.

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

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

About

Share your favorite code snippets! Hacktoberfest 2019! πŸ’»

https://github.com/sukhdeepg/Hacktoberfest


Languages

Language:Python 40.7%Language:C++ 17.6%Language:Java 16.4%Language:Jupyter Notebook 7.1%Language:JavaScript 6.4%Language:C 5.2%Language:C# 2.3%Language:Go 1.4%Language:PHP 0.7%Language:Assembly 0.6%Language:Erlang 0.5%Language:Shell 0.3%Language:Ruby 0.3%Language:Racket 0.2%Language:Kotlin 0.2%Language:Haskell 0.1%Language:Elixir 0.0%Language:Clojure 0.0%