Created
April 28, 2021 07:47
-
-
Save mintyPT/40eccc5c7a3e94a8c20cc97ada9e8b16 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
function doubleiter(nums: number[], target: number): number[] { | |
for(let i = 0; i<nums.length; i++){ | |
for(let j = i+1; j<nums.length; j++){ | |
} | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment