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

Java > Demo > arrayLike
prev  |  next  |  chance

We'll say that an array "likes" a particular value if at least half of the elements in the array differ from the value by 2 or less. (This is an example problem where the solution code is provided. Click the Go button to run the problem. JavaBat has many practice coding problems like this with immediate feedback.)

arrayLike({1, 6, 8, 7, 0, 0}, 8) → true
arrayLike({1, 6, 8, 7, 0, 0}, 4) → false
arrayLike({1, 6, 8, 7, 0, 0}, 2) → 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  >  Demo

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

Copyright Nick Parlante 2006-10 - privacy