小明参加某个歌唱比赛,评委们进行打分,要求去掉最高分,和最低分,将最高分和最低分依次存入切片并返回。 知识点: goalng, int64最大值,最小值, 大小比较,多返回值 golang中有符号的最大值为math.MaxInt64,最小值为math.MinInt64 切片的遍历有两种方式,for循环和for range循环
示例1
输入
[1,2,3,4,5,6,7,8,9]
输出
[1,9]
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 评委给出分数 * @return int整型一维数组 */ public int[] minAndMax (int[] s) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型vector 评委给出分数 * @return int整型vector */ vector
minAndMax(vector
& s) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param s int整型一维数组 评委给出分数 # @return int整型一维数组 # class Solution: def minAndMax(self , s ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 评委给出分数 * @return int整型一维数组 */ public List
minAndMax (List
s) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 评委给出分数 * @return int整型一维数组 */ function minAndMax( s ) { // write code here } module.exports = { minAndMax : minAndMax };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param s int整型一维数组 评委给出分数 # @return int整型一维数组 # class Solution: def minAndMax(self , s: List[int]) -> List[int]: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 评委给出分数 * @return int整型一维数组 */ func minAndMax( s []int ) []int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 评委给出分数 * @param sLen int s数组长度 * @return int整型一维数组 * @return int* returnSize 返回数组行数 */ int* minAndMax(int* s, int sLen, int* returnSize ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param s int整型一维数组 评委给出分数 # @return int整型一维数组 # class Solution def minAndMax(s) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 评委给出分数 * @return int整型一维数组 */ def minAndMax(s: Array[Int]): Array[Int] = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 评委给出分数 * @return int整型一维数组 */ fun minAndMax(s: IntArray): IntArray { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 评委给出分数 * @return int整型一维数组 */ public int[] minAndMax (int[] s) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 评委给出分数 * @return int整型一维数组 */ export function minAndMax(s: number[]): number[] { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 评委给出分数 * @return int整型一维数组 */ func minAndMax ( _ s: [Int]) -> [Int] { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s int整型一维数组 评委给出分数 * @return int整型一维数组 */ pub fn minAndMax(&self, s: Vec
) -> Vec
{ // write code here } }
[1,2,3,4,5,6,7,8,9]
[1,9]