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

Java > AP-1 > wordsFront
prev  |  next  |  chance

Given an array of strings, return a new array containing the first N strings. N will be in the range 1..length.

wordsFront({"a", "b", "c", "d"}, 1) → {"a"}
wordsFront({"a", "b", "c", "d"}, 2) → {"a", "b"}
wordsFront({"a", "b", "c", "d"}, 3) → {"a", "b", "c"}

...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  >  AP-1

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

Copyright Nick Parlante 2006-10 - privacy