adisrivastava121 / Snipathon-21

CONTEST 7 : 🥳 #snipathon-21🥳 contribute your favour code snippets in different languages

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Open Source Love Hacktoberfest 2021

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

CONTEST 7 : 🥳 #snipathon-21🥳 contribute your favour code snippets in different languages

License:MIT License


Languages

Language:C++ 26.4%Language:C# 16.5%Language:Go 13.8%Language:C 13.6%Language:JavaScript 11.3%Language:Java 10.6%Language:PHP 7.9%