mirror of
https://github.com/devenperez/leetcode.git
synced 2026-06-13 14:57:08 +00:00
9 lines
199 B
Python
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 |