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: Interquartile Range
Day 1: Interquartile Range
Sort by
recency
|
421 Discussions
|
Please Login in order to post a comment
def interQuartile(values, freqs): # Create the data set S S = [] for i in range(len(values)): S += [values[i]] * freqs[i]
if name == 'main': n = int(input().strip()) values = list(map(int, input().rstrip().split())) freqs = list(map(int, input().rstrip().split()))
python 3
I can't pass test 5 and 6 can somebody help me plz