Ad
Code
Diff
  • const numMinusSeven = num => ~~(num/7)+1;
    
    • const numMinusSeven = num => Math.ceil(num/7);
    • const numMinusSeven = num => ~~(num/7)+1;