''.join((i[0] for i in takewhile(lambda (x, y): y, zip(r, d))))[-1::-1] code example
Example 1: Return the union of this RDD and another one
rdd = sc.parallelize([1, 1, 2, 3])
rdd.union(rdd).collect()
Example 2: Sorts this RDD, which is assumed to consist of (key, value) pairs
tmp = [('a', 1), ('b', 2), ('1', 3), ('d', 4), ('2', 5)]
sc.parallelize(tmp).sortByKey().first()
sc.parallelize(tmp).sortByKey(True, 1).collect()
sc.parallelize(tmp).sortByKey(True, 2).collect()
tmp2 = [('Mary', 1), ('had', 2), ('a', 3), ('little', 4), ('lamb', 5)]
tmp2.extend([('whose', 6), ('fleece', 7), ('was', 8), ('white', 9)])
sc.parallelize(tmp2).sortByKey(True, 3, keyfunc=lambda k: k.lower()).collect()