小朋友们依次站成了一排,现要将他们调换顺序,反着排,按照从最右的人站在最左边,倒数最右边的人站在最左边第二个位置,以此类推。比如小朋友的顺序为[1,3,2,3,4,6],重新排列后为[6,4,3,2,3,1] 知识点: len(slice)求一个切片的长度 for循环遍历切片 golang提供了多重赋值的特性可以轻松实现变量的交换,变量一,变量二 := 变量二,变量一
示例1
输入
[1,2,3,4,5,6,7,8,9]
输出
[9,8,7,6,5,4,3,2,1]
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 * @return int整型一维数组 */ public int[] convert (int[] s) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型vector * @return int整型vector */ vector
convert(vector
& s) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param s int整型一维数组 # @return int整型一维数组 # class Solution: def convert(self , s ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 * @return int整型一维数组 */ public List
convert (List
s) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 * @return int整型一维数组 */ function convert( s ) { // write code here } module.exports = { convert : convert };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param s int整型一维数组 # @return int整型一维数组 # class Solution: def convert(self , s: List[int]) -> List[int]: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 * @return int整型一维数组 */ func convert( s []int ) []int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 * @param sLen int s数组长度 * @return int整型一维数组 * @return int* returnSize 返回数组行数 */ int* convert(int* s, int sLen, int* returnSize ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param s int整型一维数组 # @return int整型一维数组 # class Solution def convert(s) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 * @return int整型一维数组 */ def convert(s: Array[Int]): Array[Int] = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 * @return int整型一维数组 */ fun convert(s: IntArray): IntArray { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 * @return int整型一维数组 */ public int[] convert (int[] s) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 * @return int整型一维数组 */ export function convert(s: number[]): number[] { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 * @return int整型一维数组 */ func convert ( _ s: [Int]) -> [Int] { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 * @return int整型一维数组 */ pub fn convert(&self, s: Vec
) -> Vec
{ // write code here } }
[1,2,3,4,5,6,7,8,9]
[9,8,7,6,5,4,3,2,1]