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

Java > Array-1 > sameFirstLast
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.

sameFirstLast({1, 2, 3}) → false
sameFirstLast({1, 2, 3, 1}) → true
sameFirstLast({1, 2, 1}) → true

...Save, Compile, Run

See also Java Example Code. Java help docs: If Boolean Logic | Strings | While and For Loops | Arrays and Loops


prev  |  next  |  chance   |  CodingBat  >  Array-1

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

Copyright Nick Parlante 2006-10 - privacy