digital-garden/notes/Собеседования/Задачи/Задача 21.md
2024-06-13 21:01:37 +03:00

18 lines
560 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
parents:
- "[[Вопросы для собеседование Java]]"
---
```java
// На вход получаем массив чисел и число.
// Необходимо найти ПАРУ чисел из массива, сумма которых равна передаваемому числу (второму аргументу).
// Если пары нет вернуть пустой массив.
public class Solution {
// [3, 4, 2, 7], 10 -> [3, 7]
public int[] findSummands(int[] array, int sum) {
//
}
}
```