Two Sum

00:00
EasyHashmap

Given an array of integers and a target, return indices of two numbers such that they add up to target.

Examples

Input → 2,7,11,15\n9
Output → [0,1]
Input → 3,2,4\n6
Output → [1,2]
Input → 3,3\n6
Output → [0,1]
JavaScript