GooseterV / Project-Euler

Consider using a set comprehension PYL-R1718
Performance
Major
a year agoa year old
Consider using a set comprehension
 61		True - if the number is pandigital with those parameters
 62		False - the latter
 63	"""
 64	return set(sorted(set(list(str(n))))) == set(sorted(set([str(i) for i in range(0, until+1)]))) 65
 66# Credits to Project Nayuki
 67#