在一片由n+1个不同数量的果树组成的果园里,有一只小猪每天都会在这些果树中采摘水果。这只小猪每天都从果树0开始采摘,假设果树0果子数为10. 给你一个长度为n的整数数组fruit,其中fruit[i]是果树i和果树i+1的净水果数量差(0
示例1
输入
[-3,2,4,-1,-5]
输出
13
示例2
输入
[-2,-1,-3,5,2,1]
输出
12
备注:
n == fruit.length1 -100
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param fruit int整型一维数组 * @return int整型 */ public int mostFruitTree (int[] fruit) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param fruit int整型vector * @return int整型 */ int mostFruitTree(vector
& fruit) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param fruit int整型一维数组 # @return int整型 # class Solution: def mostFruitTree(self , fruit ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param fruit int整型一维数组 * @return int整型 */ public int mostFruitTree (List
fruit) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param fruit int整型一维数组 * @return int整型 */ function mostFruitTree( fruit ) { // write code here } module.exports = { mostFruitTree : mostFruitTree };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param fruit int整型一维数组 # @return int整型 # class Solution: def mostFruitTree(self , fruit: List[int]) -> int: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param fruit int整型一维数组 * @return int整型 */ func mostFruitTree( fruit []int ) int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param fruit int整型一维数组 * @param fruitLen int fruit数组长度 * @return int整型 */ int mostFruitTree(int* fruit, int fruitLen ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param fruit int整型一维数组 # @return int整型 # class Solution def mostFruitTree(fruit) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param fruit int整型一维数组 * @return int整型 */ def mostFruitTree(fruit: Array[Int]): Int = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param fruit int整型一维数组 * @return int整型 */ fun mostFruitTree(fruit: IntArray): Int { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param fruit int整型一维数组 * @return int整型 */ public int mostFruitTree (int[] fruit) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param fruit int整型一维数组 * @return int整型 */ export function mostFruitTree(fruit: number[]): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param fruit int整型一维数组 * @return int整型 */ func mostFruitTree ( _ fruit: [Int]) -> Int { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param fruit int整型一维数组 * @return int整型 */ pub fn mostFruitTree(&self, fruit: Vec
) -> i32 { // write code here } }
[-3,2,4,-1,-5]
13
[-2,-1,-3,5,2,1]
12