You are viewing a single comment's thread. Return to all comments →
JS
let amount = 0; let number = Math.ceil(Math.sqrt(a)); while(number*number <= b) { amount += 1; number += 1; } return amount;
Seems like cookies are disabled on this browser, please enable them to open this website
Sherlock and Squares
You are viewing a single comment's thread. Return to all comments →
JS