Last active
April 12, 2018 02:02
-
-
Save nithikan/e0ed331cd620a38b345bb7c34613a2a5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##### 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