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