? This repository contains Oneliners in any programming languages.
The code we want should not be trivial and must be usable in a useful way.
For example, you can create a calculator that can be imported and used. Do not add hello world codes.
This project does not accept codes where only newlines or spaces were remove.
It also does not accept codes where a simple character was added to prevent going to a new line.
For example:
import random; random.randint(0, 10)is not the correct way in one line, but:
__import__("random").randint(0, 10)is !
This repository contains codes that are written in a single line.
The purpose of this repository is to give a you some challenge, when I was a student, I loved writting stuff in one line and make it absolutely horrible to read. Hopefully, I am not alone !
For Contributing norms and guidelines, go to CONTRIBUTING.MD
Here are the steps: 1: Develop something in the programming language of your choice for any platform in less than #100LinesOfCode 2: Fork this repository 3: Clone this repository
$ git clone "https://www.github.com/{Username}/100LinesOfCode.git"
where username is your GitHub account username.
$ git branch {branchname}
$ git checkout branchname
$ git add <filename>
$ git commit -m "Name| files| Changes"
$ git push -u origin branchname
$ git remote add upstream "https://github.com/josharsh/100LinesOfCode"
$ git fetch upstream
$ git checkout master
$ git merge upstream/master
$ git push -f origin master
The root directory of your developed application must contain
Note: Please Add Author's name in Readme.md of application.