8 lines
155 B
Python
8 lines
155 B
Python
import pytest
|
|
|
|
@pytest.mark.parametrize("input, exp_output", [
|
|
|
|
])
|
|
def test_solution(input, exp_output):
|
|
sol = Solution()
|
|
assert sol == exp_output
|