task3 #2
9
src/codewars/kata_cipher_helper.py
Normal file
9
src/codewars/kata_cipher_helper.py
Normal file
@ -0,0 +1,9 @@
|
||||
class VigenereCipher(object):
|
||||
def __init__(self, key, alphabet):
|
||||
pass
|
||||
|
||||
def encode(self, text):
|
||||
pass
|
||||
|
||||
def decode(self, text):
|
||||
pass
|
||||
5
tests/codewars/test_cipher_helper.py
Normal file
5
tests/codewars/test_cipher_helper.py
Normal file
@ -0,0 +1,5 @@
|
||||
"""from src.codewars.kata_cipher_helper import *
|
||||
|
||||
|
||||
def test_cipher_helper():
|
||||
pass"""
|
||||
Loading…
x
Reference in New Issue
Block a user