Added small cli for templating leetcode exercises
This commit is contained in:
15
templates/leetcode.j2
Normal file
15
templates/leetcode.j2
Normal 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
|
Reference in New Issue
Block a user