You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
339 B

  1. Algorithm test
  2. ===
  3. ### Usage
  4. ```bash
  5. $ python3 -m pip install pipenv
  6. # Use virtualenv
  7. $ PIPENV_VENV_IN_PROJECT=true pipenv shell
  8. $ pipenv install --dev
  9. ```
  10. - Unittest
  11. ```bash
  12. $ pipenv run unittest
  13. ```
  14. ### References
  15. - [Boyer-Moore string-search algorithm](https://en.wikipedia.org/wiki/Boyer%E2%80%93Moore_string-search_algorithm)