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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">

Keybase proof

I hereby claim:

  • I am erfaanhussain on github.
  • I am erfaanhussain (https://keybase.io/erfaanhussain) on keybase.
  • I have a public key ASDWmLGYYmb_qPn4EomQoNOVY1Q9ODGvNRQeIuKE7MQVRwo

To claim this, I am signing this object:

@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;
@ErFaanHussain
ErFaanHussain / CoinDeterminer.java
Last active September 16, 2015 17:09 — forked from dmaii/CoinDeterminer.java
Coderbyte Problems for Reshad
import java.util.*;
import java.io.*;
class Function {
String CoinDeterminer(int sum) {
int[] coins = {1,5,7,9,11};
List<Integer> knapsack = new ArrayList<Integer>();
knapsack.add(0);
knapsack.add(1);