484 · 交换数组两个元素
2021-06-05 09:03
标签:数字 solution 输入 return fir 描述 nothing 解释 temp 描述 样例 输入: [1, 2, 3, 4], index1 = 2, index2 = 3 输入: [1, 2, 2, 2], index1 = 0, index2 = 3 484 · 交换数组两个元素 标签:数字 solution 输入 return fir 描述 nothing 解释 temp 原文地址:https://www.cnblogs.com/bernieloveslife/p/14634788.html
给你一个数组和两个索引,交换下标为这两个索引的数字
样例 1:
输出: 交换后你的数组应该是[1, 2, 4, 3], 不需要返回任何值,只要就地对数组进行交换即可。
样例解释: 就地交换,不需要返回值。
样例 2:
输出: 交换后你的数组应该是[2, 2, 2, 1], 不需要返回任何值,只要就地对数组进行交换即可。
样例解释: 就地交换,不需要返回值。class Solution:
"""
@param A: An integer array
@param index1: the first index
@param index2: the second index
@return: nothing
"""
def swapIntegers(self, A, index1, index2):
temp = A[index1]
A[index1] = A[index2]
A[index2] = temp
return
文章标题:484 · 交换数组两个元素
文章链接:http://soscw.com/index.php/essay/90804.html