▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/concatenation-of-array/ Concatenation of Array - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 정수 배열 nums가 주어진다. nums의 원소를 한 번 더 반복해서 가지는, 새로운 배열 ans를 반환하는 문제. # for문과 append() class Solution: def getConcatenation(self, nums: List[in..