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

 

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

Given 2 arrays of ints, a and b, return true if they have the same first element and they have different last elements. Both arrays will be length 1 or more.


array1DSameFrontDiffEnd([1, 2, 3], [1, 4]) → true
array1DSameFrontDiffEnd([10, 15, 30, 20], [10, 8, 30, 18, 20]) → false
array1DSameFrontDiffEnd([10], [10, 20]) → true

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

public boolean array1DSameFrontDiffEnd(int[] a, int[] b) { }

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