Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

big o theory

def item_in_list(to_check, the_list):
    for item in the_list:
        if to_check == item:
          return True
    return False
Source by justin.abrah.ms #
 
PREVIOUS NEXT
Tagged: #big #theory
ADD COMMENT
Topic
Name
4+9 =