We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Day 1: Quartiles
Day 1: Quartiles
Sort by
recency
|
508 Discussions
|
Please Login in order to post a comment
my easy python solution -
def quartiles(arr): sorted_arr = sorted(arr) n = len(sorted_arr)
mid = n // 2
Simple and sweet python solution
or
undefined `