Added small cli for templating leetcode exercises

This commit is contained in:
2022-08-31 12:28:56 +02:00
parent 2f32bdc7b9
commit 65e8af6bb7
3 changed files with 58 additions and 0 deletions

15
templates/leetcode.j2 Normal file
View File

@@ -0,0 +1,15 @@
import pytest
class Solution:
pass
@pytest.fixture
def solution():
return Solution()
@pytest.mark.parametrize("", [])
def test_search(solution: Solution):
pass