Login and get codingSometimes you need to restructure a nested data structure. For example you can convert a
dict
in alist
of (key
,value
)tuple
s viadict.items()
.In this Bite a real world scenario where we wanted to plot some data from a
Counter dict
.For plots you typically need 2 lists: X + Y axis or labels + values. So we needed an easy way to transpose data structures.
Complete the
transpose
function to do just that. It has to work for both dicts and lists of (named)tuples. Examples given in the docstring. See also the TESTS tab. Have fun!
258 out of 261 users completed this Bite.
Will you be the 259th person to crack this Bite?
Resolution time: ~47 min. (avg. submissions of 5-240 min.)
Our community rates this Bite 4.6 on a 1-10 difficulty scale.
» Up for a challenge? 💪