Skip to content

Instantly share code, notes, and snippets.

@mintyPT
Created April 28, 2021 07:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mintyPT/40eccc5c7a3e94a8c20cc97ada9e8b16 to your computer and use it in GitHub Desktop.
Save mintyPT/40eccc5c7a3e94a8c20cc97ada9e8b16 to your computer and use it in GitHub Desktop.
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