영어공부 3

숫자와 연산자를 조합하여 타겟 만들기 (Backtracking) | 알고리즘 & 영어 공부

1️⃣ 문제 설명 (Problem Statement)📌 영어 지문 (Original Problem Statement)Given a string num that contains only digits and an integer target,return all possibilities to insert the binary operators +, -, and/or * between the digits of numso that the resultant expression evaluates to the target value.Constraints:1 num consists of only digits.-231 📌 한글 번역 (Korean Translation)숫자로만 이루어진 문자열 num과 정수 target이 ..

개발 2025.02.18

사전순으로 가장 큰 유효한 수열 구성 문제 풀이 | 알고리즘 & 영어 공부

사전순으로 가장 큰 유효한 수열 구성 문제 풀이 (Lexicographically Largest Valid Sequence)1️⃣ 문제 설명 (Problem Statement)📌 영어 지문 (Original Problem Statement)Given an integer n, find a sequence that satisfies all of the following:The integer 1 occurs once in the sequence.Each integer between 2 and n occurs twice in the sequence.For every integer i between 2 and n, the distance between the two occurrences of i is exact..

개발 2025.02.16

🚀 두 수의 합(Two Sum) 알고리즘 문제 풀이 | 알고리즘 & 영어 공부

기본 알고리즘 문제 중 하나인 "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 ..

개발 2025.02.14