Time: 185 ms (5.25%), Space: 13.7 MB (46.34%) - LeetHub

This commit is contained in:
Deven
2022-09-19 13:54:18 -04:00
parent 5d229650b4
commit 6ca7ce73d3
@@ -0,0 +1,9 @@
class Solution(object):
def getConcatenation(self, nums):
"""
:type nums: List[int]
:rtype: List[int]
"""
ans = nums
ans += nums
return ans