fix empty output

This commit is contained in:
onurcangolge
2022-04-03 02:53:11 +03:00
committed by İnanç Gümüş
parent fb3ce9d560
commit d40f302909

View File

@ -46,8 +46,8 @@ Istanbul,500,10,5,1000000`
} }
} }
// from cannot be greater than to: reset invalid arg to 0 // "from" cannot be greater than or equal to "to": reset invalid arg to 0
if from > to { if from >= to {
from = 0 from = 0
} }