Created
August 28, 2022 09:50
-
-
Save NhanKhangg98/27b6af3d82551360493ac5f709884684 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| var twoSum = function(nums, target) { | |
| for (let i = 0; i < nums.length; i++){ | |
| for (let j = 0; j < nums.length; j++){ | |
| if(nums[i] + nums[j] == target && i !=j) { | |
| return [nums[i], nums[j]]; | |
| } | |
| } | |
| } | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
j = i + 1