👏👏 Welcome to examplehub/Java ! Before sending your pull requests. Please make sure that you read the whole guidelines.
- Fork the project to your github account & clone locally computer.
- Create an upstream remote and sync your local copy before you branch.
- Branch for each separate piece of work.
- Do the work, write good commit messages, and read the CONTRIBUTING file.
- Push to your origin repository.
- Create a new PR in GitHub.
- Waiting to be review by the maintainers.
- Single letter variable names are old school so please avoid them unless their life only spans a few lines.
- Expand acronyms because
gcd()
is hard to understand butgreatest_common_divisor()
is not. - Write
junit
to test all your functions. - Make sure build success using
gradle clean test
command. - Please follow Java naming conventions.