If instead passing the condition that is if(amount>=denom) can we take a negative base case that like
if(amount<0)
{
return;
}
?
If instead passing the condition that is if(amount>=denom) can we take a negative base case that like
if(amount<0)
{
return;
}
?