• + 2 comments

    I am having some trouble with this one! So much so that I forfeited my points to see the answer. When I copy and paste the top solution (which was very close to my solution), I am still failing 3/6 test cases - what am I doing wrong??

    return leap
    
    if year%4 == 0:
        if year%100 == 0:
            if year%400 == 0:
                leap = true
    else:
         leap = False