id/email
password
forgot password
about | help | done | prefs | create account
CodingBat code practice

Python > List-1 > same_first_last
prev  |  next  |  chance

Given an array of ints, return True if the array is length 1 or more, and the first element and the last element are the same.

same_first_last([1, 2, 3]) → False
same_first_last([1, 2, 3, 1]) → True
same_first_last([1, 2, 1]) → True

...Save, Compile, Run

See also Python Example Code. Python help docs: Python Strings | Python Lists | Python If Boolean


prev  |  next  |  chance   |  CodingBat  >  List-1

Forget It! -- delete my code for this problem 106.0

Copyright Nick Parlante 2006-10 - privacy