• + 1 comment

    I found clojure always return nil if I use loop/when/recur. It made things more difficult and cannot pass the test case with the ending nil.

    fail like below:

    Your Output (stdout)
    
    1
    1 1
    1 2 1
    1 3 3 1
    nil
    
    Expected Output
    
    1
    1 1
    1 2 1
    1 3 3 1