21 lines
967 B
Markdown
21 lines
967 B
Markdown
Repository for CDS-2020 Programming and Promt Engineering II
|
|
|
|
# Commits convention
|
|
|Prefix|Description|Example|
|
|
|-|-|-|
|
|
|feat|New feature|feat: add price prediction model|
|
|
|fix|Bugfix|fix: correct null pointer in loader|
|
|
|chore|Maintenance tasks, no logic changes|chore: update README|
|
|
|docs|Documentation|docs: add API reference|
|
|
|refractor|Code restructured, no new behavior|refactor: extract helper function|
|
|
|test|Tests added/changed|test: add unit tests for mod_a|
|
|
|style|Formatting, no change in logic|style: run black formatter|
|
|
|ci|CI/CD Pipeline change|ci: add GitHub Actions workflow|
|
|
|perf|Performance improvement|perf: optimize OSRM batch requests|
|
|
|build|Build-System, Dependencies|build: update requirements.txt|
|
|
|
|
# Codewars
|
|
|Title|Source (src/codewars/)|Test (test/codewars/)|URL|
|
|
|-|-|-|-|
|
|
|Find the force of gravity between two objects|kata_force_of_gravity.py|test_force_of_gravity.py|[URL](https://www.codewars.com/kata/5b609ebc8f47bd595e000627/)|
|