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

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

Given an array of ints, return a new array length 2 containing the first and last elements from the original array. The original array will be length 1 or more.

make_ends([1, 2, 3]) → [1, 3]
make_ends([1, 2, 3, 4]) → [1, 4]
make_ends([7, 4, 6, 2]) → [7, 2]

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

Copyright Nick Parlante 2006-10 - privacy