-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpassword.java
34 lines (30 loc) · 879 Bytes
/
password.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package day4;
/**
* password
*/
public class password {
// code for Successful Pairs of Spells and Potions
public int[] successfulPairs(int[] spells, int[] potions, long success) {
int[] result = new int[spells.length];
for (int i = 0; i < spells.length; i++) {
int count = 0;
for (int j : potions) {
if (spells[i] * j >= success) {
count++;
}
}
result[i] = count;
}
return result;
}
public static void main(String[] args) {
password p = new password();
int[] spells = { 1, 2, 3, 4, 5 };
int[] potions = { 1, 2, 3, 4, 5 };
long success = 10;
int[] result = p.successfulPairs(spells, potions, success);
for (int i : result) {
System.out.println(i);
}
}
}