Hello ,
Let's say I have :
def mine( a, b ):
return a>=b - 1
I can't understand what's going on with the -1.
So , if a = 4 , b = 2 , it gives True
If the opposite it gives False.
As I said I don't know about the -1 here ( or generally whatever follows the initial a>=b )
Thanks!