79726962

Date: 2025-08-06 07:35:46
Score: 0.5
Natty:
Report link
const [firstHalf, secondHalf] = arr.reduce((a, c, i, n) => {

    a[+(i > n.length * 0.5)].push(c)

    return a
}, [[], []])
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: mtx