- Fork then clone this repository.
- Navigate to the challenges folder and select a challenge.
- Open the readme.md file in the selected challenge's folder and follow the instructions to complete the challenge.
- Place your solution file in the corresponding solutions folder.
- Open a pull request.
- Import tests from the challenges package
from challenges import tests
- Call a static method from the test class of the challenge you are testing and store the return value: tuple[passes: int, fails: int] to get your function's test results.
test_result: tuple[int, int] = tests.TestTempConverter.celsius_to_fahrenheit(your_function)