Skip to content

Instantly share code, notes, and snippets.

@minmaxdata
Created August 4, 2018 22:30
Show Gist options
  • Save minmaxdata/b6e45aef85f9477fe7425240f5e2b42a to your computer and use it in GitHub Desktop.
Save minmaxdata/b6e45aef85f9477fe7425240f5e2b42a to your computer and use it in GitHub Desktop.
Javascript Hash
var twoSum = function(nums, target) {
const hash = {};
for (let i = 0; i < nums.length; i++) {
const comp = target - nums[i];
if (hash[comp] !== undefined) {
return [hash[comp], i];
}
hash[nums[i]] = i;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment