Skip to content

Instantly share code, notes, and snippets.

View ErFaanHussain's full-sized avatar
🎯
Focusing

ErFaan Hussain ErFaanHussain

🎯
Focusing
  • Publicis Sapient
  • Bangalore, Karnataka India
View GitHub Profile
@ErFaanHussain
ErFaanHussain / ArrayAddition.java
Created September 17, 2015 15:29
JAVA Assignment Programs
/**Create a method ArrayAddition(arr) that takes the array of numbers stored in arr and return the true if any
combination of numbers in the array can be added up to equal the largest number in the array otherwise return false.
The array may contain negative numbers.
**Question 3 *****
***@author ErFaan Hussain***
**/
package Question3;
import java.util.Scanner;
import java.util.Arrays;