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

 

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

Return true if there exists at least two numbers in nums that are between 20 and 25 (both inclusive), unless all numbers are in this range. Otherwise, return false.


arrayTwoBetween20And25([1, 20, 3, 4]) → false
arrayTwoBetween20And25([28, 22, 25]) → true
arrayTwoBetween20And25([22, 24, 25, 23, 21]) → false

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

public boolean arrayTwoBetween20And25(int[] nums) { }

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