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

 

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

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

Given two arrays - a and b - both of whose lengths are 2,
return true if the sum of a's elements equals the sum of b's elements.

public boolean sumAEqualsSumB_2(int[] a, int[] b) {
  boolean equals = false;
  int sumA = a[0] + a[1];
  int sumB = b[0] + b[1];
  if (sumA == sumB) {
    equals = true;
  }
  return equals;
}

sumAEqualsSumB_2([3, 0], [2, 1]) → true
sumAEqualsSumB_2([30, 20], [40, 10]) → true
sumAEqualsSumB_2([2, 5], [5, 3]) → false

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

public boolean sumAEqualsSumB_2(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