def euler(num): return sum([x for x in range(num) if not x % 3 or not x % 5])
Loading collection data...