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

 

srp4379@lausd.net 1-arraybasics > sumAEqualsSumB_2_3
prev  |  next  |  chance

public boolean sumAEqualsSumB_2_3(int[] a, int[] b)

Given two arrays - a and b - where the length of a = 2 and the length of b = 3
return true if the sum of a's elements equals the sum of b's elements.


sumAEqualsSumB_2_3([3, 5], [4, 3, 1]) → true
sumAEqualsSumB_2_3([30, 20], [15, 36, -1]) → true
sumAEqualsSumB_2_3([2, 5], [5, 3, 4]) → false

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

public boolean sumAEqualsSumB_2_3(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: 1

Copyright Nick Parlante 2017 - privacy