See more
… possible is not the goal (contrary to programming competitions), communication is key. Do not hand waive to yourself. See my solutions to some leetcode problems, each tackled as if it was an interview. Ea…
var isOdd = x => x % 2 !== 0;var numbers = [1, 2, 3, 4, 5];var oddNumbers = filter(isOdd, numbers);console.log(oddNumbers); // [1, 3, 5]
…practice and some panicky moments that our parents would like to forget, we learned to drive and we finally got our license.