/coding-challenge-python

📝Coding challenge practice using python 3.

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

coding-challenge-python

Master Versioning Quality
Build Status Dependabot Status CodeFactor

Coding challenge practice using python 3.

Key Points

  • 🎯 Algorithms & DataStructure

  • 🎯 Continuous Integration

  • 🎯 Problem Solving

  • 🎯 Test Driven Development (TDD)

  • 🎯 Python

  • 🎯 Fun?

How to run

  1. I highly recommend using virtualenv before continuing.

  2. Install necessary dependencies.

$ make install

...
  1. Run all the tests.
$ make ci

...
  1. Run specific test.
$  make test module=<module_name>   // ex) make test module=hello_world

...

VS Code settings

If using virtualenv, add following settings to vscode file. (Replace content within <>)

{
  "python.pythonPath": "<Value you get from running 'which python'>"
}