/
BGVal
/
basic-js
Обзор
Документация
Войти
/
BGVal
/
basic-js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/simple-chain.js
26 строк
740 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"); const chainMaker = { getLength() { throw new CustomError('Not implemented'); // remove line with error and write your code here }, addLink(value) { throw new CustomError('Not implemented'); // remove line with error and write your code here }, removeLink(position) { throw new CustomError('Not implemented'); // remove line with error and write your code here }, reverseChain() { throw new CustomError('Not implemented'); // remove line with error and write your code here }, finishChain() { throw new CustomError('Not implemented'); // remove line with error and write your code here } }; module.exports = chainMaker;