NPTEL solution
Solution for NPTEL Programming, Data Structures and Algorithms using Python, Week 4 Programming Assignment
Question :- Write a Python function frequency(l) that takes as input a list of integers and returns a pair of the form (minfreqlist,maxfreqlist) where minfreqlist is a list of numbers with minimum frequency in l, sorted in ascending order maxfreqlist is a list of numbers with maximum frequency in l, Read more…