05_2
This commit is contained in:
parent
29e6254438
commit
41abdea33b
|
@ -29,8 +29,14 @@ input.split('\n').forEach(line => {
|
||||||
|
|
||||||
const howMany = parseInt(splitLine[1]), from = parseInt(splitLine[3]) - 1, to = parseInt(splitLine[5]) - 1;
|
const howMany = parseInt(splitLine[1]), from = parseInt(splitLine[3]) - 1, to = parseInt(splitLine[5]) - 1;
|
||||||
|
|
||||||
|
const tempStack = [];
|
||||||
|
|
||||||
for(let i = 0; i < howMany; i++) {
|
for(let i = 0; i < howMany; i++) {
|
||||||
stacks[to].push(stacks[from].pop());
|
tempStack.push(stacks[from].pop());
|
||||||
|
}
|
||||||
|
|
||||||
|
for(let i = 0; i < howMany; i++) {
|
||||||
|
stacks[to].push(tempStack.pop())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue