Skip to content

Instantly share code, notes, and snippets.

@nithikan
Last active April 12, 2018 02:02
Show Gist options
  • Save nithikan/e0ed331cd620a38b345bb7c34613a2a5 to your computer and use it in GitHub Desktop.
Save nithikan/e0ed331cd620a38b345bb7c34613a2a5 to your computer and use it in GitHub Desktop.
##### Exercise 1 Write function that tests an array for
##### its length not bigger than a certain value
##### 11/04/2018
##### Nithikan Srinakrung - Bam
##### DFL, FTSM, UKM
def compare (a,lim):
if lim >= len(a):
return True
else:
return False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment