1. Two Sum 배열과 target을 파라미터로 받아 배열 중 두 개의 숫자가 target과 같을 시 그 숫자들의 인덱스 번호를 출력하는 문제 Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element twice. You can return the answer in any order. Example 1: Input: nums = [2,7,11,15], target =..