algos_and_structures/leetcode/utils/template.py

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