Skip to content

Latest commit

 

History

History
139 lines (89 loc) · 5.9 KB

CONTRIBUTING.md

File metadata and controls

139 lines (89 loc) · 5.9 KB

Contributing guidelines

Before contributing

Welcome to TheAlgorithms/Python! Before sending your pull requests, make sure that you read the whole guidelines. If you have any doubt on the contributing guide, please feel free to state it clearly in an issue or ask the community in Gitter.

Contributing

Contributor

We are very happy that you consider implementing algorithms and data structure for others! This repository is referenced and used by learners from all over the globe. Being one of our contributors, you agree and confirm that:

  • You did your work - no plagiarism allowed
    • Any plagiarized work will not be merged.
  • Your work will be distributed under MIT License once your pull request is merged
  • You submitted work fulfils or mostly fulfils our styles and standards

New implementation is welcome! For example, new solutions for a problem, different representations for a graph data structure or algorithm designs with different complexity.

Improving comments and writing proper tests are also highly welcome.

Contribution

We appreciate any contribution, from fixing a grammar mistake in a comment to implementing complex algorithms. Please read this section if you are contributing your work.

Coding Style

We want your work to be readable by others; therefore, we encourage you to note the following:

  • Please write in Python 3.x.

  • Please consider running python/black on your Python file(s) before submitting your pull request. This is not a requirement but it does make your code more readable. There are other code formatters (autopep8, yapf) but the black style is now the recommendation of the Python core team. To use it,

    pip3 install black  # only required the first time
    black my-submission.py
  • All submissions will need to pass the test flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics before they will be accepted so if possible, try this test locally on your Python file(s) before submitting your pull request.

  • If you know PEP 8 already, you will have no problem in coding style, though we do not follow it strictly. Read the remaining section and have fun coding!

  • Always use 4 spaces to indent.

  • Original code submission requires comments to describe your work.

  • More on comments and docstrings:

    The following are considered to be bad and may be requested to be improved:

    x = x + 2	# increased by 2

    This is too trivial. Comments are expected to be explanatory. For comments, you can write them above, on or below a line of code, as long as you are consistent within the same piece of code.

    Sometimes, docstrings are avoided. This will happen if you are using some editors and not careful with indentation:

        """
    	This function sums a and b
    """
    def sum(a, b):
        return a + b

    However, if you insist to use docstrings, we encourage you to put docstrings inside functions. Also, please pay attention to indentation to docstrings. The following is acceptable in this case:

    def sumab(a, b):
        """
    	This function sums two integers a and b
    	Return: a + b
        """
        return a + b
  • lambda, map, filter, reduce and complicated list comprehension are welcome and acceptable to demonstrate the power of Python, as long as they are simple enough to read.

    • This is arguable: write comments and assign appropriate variable names, so that the code is easy to read!
  • Write tests to illustrate your work.

    The following "testing" approaches are not encouraged:

    input('Enter your input:')
    # Or even worse...
    input = eval(input("Enter your input: "))

    However, if your code uses input() then we encourage you to gracefully deal with leading and trailing whitespace in user input by adding .strip() to the end as in:

    starting_value = int(input("Please enter a starting value: ").strip())

    Please write down your test case, like the following:

    def sumab(a, b):
        return a + b
    # Write tests this way:
    print(sumab(1, 2))	# 1+2 = 3
    print(sumab(6, 4))	# 6+4 = 10
    # Or this way:
    print("1 + 2 = ", sumab(1, 2))	# 1+2 = 3
    print("6 + 4 = ", sumab(6, 4))	# 6+4 = 10

    Better yet, if you know how to write doctests, please consider adding them.

  • Avoid importing external libraries for basic algorithms. Only use those libraries for complicated algorithms.

Other Standard While Submitting Your Work

  • File extension for code should be .py. Jupiter notebook files are acceptable in machine learning algorithms.

  • Strictly use snake case (underscore separated) in your file name, as it will be easy to parse in future using scripts.

    If possible, follow the standard within the folder you are submitting to.

  • If you have modified/added code work, make sure the code compiles before submitting.

  • If you have modified/added documentation work, ensure your language is concise and contains no grammar errors.

  • Do not update the README.md or DIRECTORY.md file which will be periodically autogenerated by our Travis CI processes.

  • Add a corresponding explanation to Algorithms-Explanation (Optional but recommended).

  • All submissions will be tested with mypy so we encourage to add Python type hints where it makes sense to do so.

  • Most importantly,

    • Be consistent in the use of these guidelines when submitting.
    • Join Gitter now!
    • Happy coding!

Writer @poyea, Jun 2019.