GooseterV / Project-Euler

Missing whitespace around operator FLK-E225
Style
Minor
2 years ago2 years old
missing whitespace around operator
 48		True - if the number is a palendrome
 49		False - the latter
 50	"""
 51	return list(str(n))==list(reversed(list(str(n)))) 52
 53def isPandigital(n, until=9):
 54	"""