Created
June 1, 2020 23:39
-
-
Save hkasera/42fb2590a50968d5fd3c86e3a4b8e729 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private boolean sumsToTarget(int[] arr, int k) { | |
Arrays.sort(arr); | |
int lhs = 0, rhs = arr.length - 1; | |
while (lhs < rhs) { | |
int sum = arr[lhs] + arr[rhs]; | |
if (sum == k) | |
return true; | |
else if (sum < k) | |
lhs++; | |
else rhs--; | |
} | |
return false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment