Implement an algorithm to merge an arbitrary number of sorted lists into one sorted list. The aim is to create the smallest working programme, in whatever language you like.
Python, 107 chars:
def f(l): n=[] for t in l: for i in t: n+=[t] s=[] while n: s.+=[min(n)]; n.remove(min(n)) return s