Find the Median

  • + 0 comments

    **JAVA

    Collections.sort(arr);
    return arr.get(arr.size() / 2);