GooseterV / Project-Euler

Doc line too long FLK-W505
Style
Minor
2 years ago2 years old
doc line too long (112 > 88 characters)
 52
 53def isPandigital(n, until=9):
 54	"""
 55	Checks whether a number is pandigital from 0 to `until` (contains each number from 0 to `until` in it's digits) 56
 57	Parameters:
 58		n:int - the number to check