Files

9 lines
199 B
Python

class Solution(object):
def getConcatenation(self, nums):
"""
:type nums: List[int]
:rtype: List[int]
"""
ans = nums
ans += nums
return ans