79787788

Date: 2025-10-11 03:26:38
Score: 0.5
Natty:
Report link

Also, where you have

if( j < start )
{
    quickSort( numbers, start, j );
}

the condition should be

if( start < j )

and just below that, where you have

if( i < start )
{
    quickSort( numbers, i, end);
}

the condition should be

if( i < end )
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: The Lost Petrol