• + 0 comments

    My JavaScript Solution function squares(a, b) { const start = Math.ceil(Math.sqrt(a)); const end = Math.floor(Math.sqrt(b));
    return end - start + 1 > 0 ? end - start + 1 : 0; }