[NeetCode] 1929. Concatenation of Array
Synced attempt history for LeetCode 1929: Concatenation of Array.
0
Tags: algorithms, neetcode, python
Categories: NeetCode
- Problem
- Synced automatically from
devbattery/neetcode-submissions
Notes
Write your own notes here. This section is preserved across syncs.
Attempts
Attempt 1 ยท 2026-04-21 ยท Python
class Solution:
def getConcatenation(self, nums: List[int]) -> List[int]:
return nums + nums
Leave a comment