Hello!
The question is about this function and it's results:
Could someone explain me please, why in results do we have "20"?
I thought it's just comment issue, but when I've checked it, it returns [11, 15, 20, 21]
100.isMultiple(of: 2) //true
20.isMultiple(of: 2) //true
I've expected results: [11, 15, 21]
Is this an issue or I didn't understand correctly how should it work?