• + 0 comments

    Maybe I am being pendantic, but since the instructions said to "Print a single line of space-separated integers", I thought we were supposed to print them as integers.

    So I used:

    for n in arr: print n,
    

    Still trying to think of an instance in which this distinction would matter...