/
BGVal
/
basic-js
Обзор
Документация
Войти
/
BGVal
/
basic-js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/vigenere-cipher.js
14 строк
381 B
AlreadyBored
fix: fix hanoi-tower test issue with precision + fix it-optional implementation + minor fixes to descriptions
01 май 2020, 17:21
01 май 2020, 17:21
c21d85e
Код
Авторство
О чём код?
const CustomError = require("../extensions/custom-error"); class VigenereCipheringMachine { encrypt() { throw new CustomError('Not implemented'); // remove line with error and write your code here } decrypt() { throw new CustomError('Not implemented'); // remove line with error and write your code here } } module.exports = VigenereCipheringMachine;