>>> decrypt('marvin', 'QRACRWU') 'JESSICA'
(key: str, words: str)
| 53 | |
| 54 | |
| 55 | def decrypt(key: str, words: str) -> str: |
| 56 | """ |
| 57 | >>> decrypt('marvin', 'QRACRWU') |
| 58 | 'JESSICA' |
| 59 | """ |
| 60 | return encrypt(key, words) |
| 61 | |
| 62 | |
| 63 | def get_position(table: tuple[str, str], char: str) -> tuple[int, int]: |
no test coverage detected