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

 

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 equal.


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 (ctrl-enter)

def same_first_last(nums):

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Python Help

Difficulty: 106.0 Post-solution available

Copyright Nick Parlante 2017 - privacy