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

 

tlsmith2@wsfcs.k12.nc.us > almostTheSame
prev  |  next  |  chance

Given an array of numbers sorted in increasing order, return true if the array contains 3 adjacent numbers that differ from each other by at most 2, such as with {3, 4, 5} or {3, 5, 5}.


almostTheSame([3, 4, 5]) → true
almostTheSame([3, 4, 6]) → false
almostTheSame([1, 3, 5, 5]) → true

...Save, Compile, Run (ctrl-enter)

public boolean almostTheSame(int[] scores) { }

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

Java Help

Misc Code Practice

Difficulty: 10 Post-solution available

Copyright Nick Parlante 2017 - privacy