Здравейте!
Опитвам се да разбера ако един код работи във Visual Studio с допълнителните настройки от About-Usage->JavaScript, и дава верен резултат, защо Judge го дава грешен?
Пример:
const getGets = (arr) => {
let index = 0;
return () => {
const toReturn = arr[index];
index += 1;
return toReturn;
};
};
// this is the test
const test = [
‘5’,
‘1 3’,
‘123 -3’,
‘4 -150’,
];
const gets = this.gets || getGets(test);
const print = this.print || console.log;
let deposit = gets();
let deposit1 = deposit * 1.05;
let deposit2 = deposit1 * 1.05;
let deposit3 = deposit2 * 1.05;
print(deposit1);
print(deposit2);
print(deposit3);
(задача Interest от Problems)
Благодаря!