I\'m having trouble with this CodingBat problem:
Given an int array length 2, return True if it contains a 2 or a 3.
I\'ve trie
def has23(nums): if nums[0] ==2 or nums[0]==3 or nums[1] ==2 or nums[1]==3: return True else: return False