Merge pull request #609 from raklaptudirm/master

Fix entire codebase
This commit is contained in:
Christian Clauss
2021-05-23 09:06:56 +02:00
committed by GitHub
28 changed files with 204 additions and 197 deletions

View File

@ -50,10 +50,9 @@ const main = () => {
arr.push(input[j])
j++
}
const newArr = []
arr.map(e => {
newArr.push(e.trim().split(' ').map(Number))
})
const newArr = arr.map(e =>
e.trim().split(' ').map(Number)
)
const cache = []
for (let i = 0; i <= currlen; i++) {
const temp = []