农场里有一群牛,每头牛都有一个体重。现在你需要对牛群进行观察,找出体重差最大的两头牛。给你一个按 非递增顺序 排序的整数数组 weights,表示每头牛的体重。你需要计算每头牛的体重与前一头牛的体重之差的绝对值,然后输出这些差值组成的新数组,要求也按 非递增顺序 排序。
示例1
输入
[10, 3, 2, 1, 0]
输出
[7,1,1,1]
示例2
输入
[11,3,2,1,0]
输出
[8,1,1,1]
备注:
1 0
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @return int整型一维数组 */ public int[] maxWeightDifference (int[] weights) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型vector * @return int整型vector */ vector
maxWeightDifference(vector
& weights) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param weights int整型一维数组 # @return int整型一维数组 # class Solution: def maxWeightDifference(self , weights ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @return int整型一维数组 */ public List
maxWeightDifference (List
weights) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @return int整型一维数组 */ function maxWeightDifference( weights ) { // write code here } module.exports = { maxWeightDifference : maxWeightDifference };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param weights int整型一维数组 # @return int整型一维数组 # class Solution: def maxWeightDifference(self , weights: List[int]) -> List[int]: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @return int整型一维数组 */ func maxWeightDifference( weights []int ) []int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @param weightsLen int weights数组长度 * @return int整型一维数组 * @return int* returnSize 返回数组行数 */ int* maxWeightDifference(int* weights, int weightsLen, int* returnSize ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param weights int整型一维数组 # @return int整型一维数组 # class Solution def maxWeightDifference(weights) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @return int整型一维数组 */ def maxWeightDifference(weights: Array[Int]): Array[Int] = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @return int整型一维数组 */ fun maxWeightDifference(weights: IntArray): IntArray { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @return int整型一维数组 */ public int[] maxWeightDifference (int[] weights) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @return int整型一维数组 */ export function maxWeightDifference(weights: number[]): number[] { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @return int整型一维数组 */ func maxWeightDifference ( _ weights: [Int]) -> [Int] { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @return int整型一维数组 */ pub fn maxWeightDifference(&self, weights: Vec
) -> Vec
{ // write code here } }
[10, 3, 2, 1, 0]
[7,1,1,1]
[11,3,2,1,0]
[8,1,1,1]