Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Starry, starry gt... solution in Creative category for Count Inversions by veky
from itertools import combinations as c,starmap as s
count_inversion=lambda a:sum(s(int.__gt__,c(a,2)))
Jan. 4, 2015
Comments: