기본 알고리즘 문제 중 하나인 "Two Sum" 문제를 해결하는 방법을 정리했습니다.앞으로 올릴 게시물을 통해 알고리즘 사고력과 영어 문제 해석 능력을 동시에 키워보려고 합니다. 많은 관심 부탁드립니다.1️⃣ 문제 설명 (Problem Statement)📌 영어 지문 (Original Problem Statement)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 not use the same element twice.🔹 You may assume that each input would have exactly one ..