Pairs with sum solution (t16x24) #2.
parent
5650e1ee69
commit
a8177bcc59
|
@ -19,14 +19,10 @@ public class Solver {
|
|||
if (nr > el) {
|
||||
continue;
|
||||
}
|
||||
if (el != nr) {
|
||||
if (s.getOrDefault(nr, 0) < 1) {
|
||||
continue;
|
||||
}
|
||||
} else {
|
||||
if (s.getOrDefault(nr, 0) <= 1) {
|
||||
continue;
|
||||
}
|
||||
int existing_count = s.getOrDefault(nr, 0);
|
||||
int required_count = el == nr ? 2 : 1;
|
||||
if (required_count > existing_count) {
|
||||
continue;
|
||||
}
|
||||
solutions.add(new Solution(nr, el));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue