GitXplorerGitXplorer
T

Kotlin

public
1454 stars
379 forks
64 issues

Commits

List of commits on branch master.
Unverified
e57a8888dec4454d39414082bbe6a672a9d27ad1

updating DIRECTORY.md

committed 4 years ago
Verified
1d4f42e7aa4aa292f9bbf188e7af00e8a561002f

Merge pull request #19 from alessandron3/master

rregan-hoffman committed 4 years ago
Unverified
16dbd2815bea2791497148f2bef1d956ea75143a

updating DIRECTORY.md

committed 4 years ago
Verified
c109f4738e42987b76710f2d8a9605748d48121d

Merge pull request #55 from reganlaurell/area

vvbrazo committed 4 years ago
Verified
f561073f894e4624249aa0c2f4f56aaa8b218625

Create .stale.yml

vvbrazo committed 4 years ago
Unverified
991d8ce7645d3e088b54b43b735162260a99f8a5

updating DIRECTORY.md

committed 4 years ago

README

The README file for this repository.

Kotlin

Contribution Guidelines

  • If you add an algorithm then you have to add a test (JUnit) along with it. In the absence of a test, the PR will not be approved.
  • Follow the correct coding guidelines with proper description of the methods. Refer Kotlin Coding Standards.
  • Your work will be distributed under MIT License once your pull request is merged.
  • Please do not add a signature inside the code. The commit history is sufficient to determine who has added the code to the repo.
  • Make sure the algorithm which is getting added comes under a certain domain of Algorithms. Please don't create a package with a name such as Misc, Others, etc.
  • While making a PR, make sure you are committing the Kotlin files only and not any project specific files. If you feel that your IDE is generating some extra files, then either don't add them to git, or add the extensions to .gitignore.
  • Please don't raise a PR for solutions to problems from online judges such as Hackerrank, Leetcode, etc.

Steps to raise a PR

  • Fork the Kotlin Repo
  • Open the forked repo on your local machine through IntelliJ by importing the project as a Gradle project
  • Make the changes on your local machine
  • Push the changes to the forked repository
  • Raise a PR against the master branch