You are viewing a single comment's thread. Return to all comments →
JS
let arr = input.split(/[\n]/g); let a = parseFloat(arr[1]) - parseFloat(arr[4]) * parseFloat(arr[2]) / Math.sqrt(parseInt(arr[0])); let b = parseFloat(arr[1]) + parseFloat(arr[4]) * parseFloat(arr[2]) / Math.sqrt(parseInt(arr[0])); console.log(a.toFixed(2)); console.log(b.toFixed(2));
Seems like cookies are disabled on this browser, please enable them to open this website
Day 6: The Central Limit Theorem III
You are viewing a single comment's thread. Return to all comments →
JS