Find the Runner-Up Score!

  • + 0 comments

    Actually 'n' is used here to iterate 'arr' object

    arr = map(int,input().split())[:n];

    and

    arr = map(int, input().split());

    are same

    Hope this helps!