動機

紀錄

Sol

def solution(T):
    if not T:
        return -1
    else:
        return 1+max(solution(T.l), solution(T.r))