You are viewing a single comment's thread. Return to all comments →
JS
let value = input.split(" "); let ca = 160 + (40 * (Math.pow(parseFloat(value[0]), 2) + parseFloat(value[0]))); let cb = 128 + (40 * (Math.pow(parseFloat(value[1]), 2) + parseFloat(value[1]))); console.log(ca.toFixed(3), "\n" , cb.toFixed(3));
Seems like cookies are disabled on this browser, please enable them to open this website
Day 5: Poisson Distribution II
You are viewing a single comment's thread. Return to all comments →
JS