牧场主有一个产奶数据的整数数组 milk_amount,表示不同品种的乳牛的产奶量。请返回一个数组 others表示其他品种的牛产奶量的乘积,其中 others[i] 等于数组 milk_amount 中除了 milk_amount[i] 之外其他元素的乘积。 题目数据保证数组 milk_amount 中任意元素的全部品种索引前元素和后元素的产奶量乘积都在 32 位整数范围内。
示例1
输入
[5, 7, 3, 1]
输出
[21,15,35,105]
备注:
请不要使用除法,且在 O(n) 时间复杂度内完成此题.2 0
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param milk_amount int整型一维数组 * @return int整型一维数组 */ public int[] product_except_self (int[] milk_amount) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param milk_amount int整型vector * @return int整型vector */ vector
product_except_self(vector
& milk_amount) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param milk_amount int整型一维数组 # @return int整型一维数组 # class Solution: def product_except_self(self , milk_amount ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param milk_amount int整型一维数组 * @return int整型一维数组 */ public List
product_except_self (List
milk_amount) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param milk_amount int整型一维数组 * @return int整型一维数组 */ function product_except_self( milk_amount ) { // write code here } module.exports = { product_except_self : product_except_self };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param milk_amount int整型一维数组 # @return int整型一维数组 # class Solution: def product_except_self(self , milk_amount: List[int]) -> List[int]: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param milk_amount int整型一维数组 * @return int整型一维数组 */ func product_except_self( milk_amount []int ) []int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param milk_amount int整型一维数组 * @param milk_amountLen int milk_amount数组长度 * @return int整型一维数组 * @return int* returnSize 返回数组行数 */ int* product_except_self(int* milk_amount, int milk_amountLen, int* returnSize ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param milk_amount int整型一维数组 # @return int整型一维数组 # class Solution def product_except_self(milk_amount) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param milk_amount int整型一维数组 * @return int整型一维数组 */ def product_except_self(milk_amount: Array[Int]): Array[Int] = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param milk_amount int整型一维数组 * @return int整型一维数组 */ fun product_except_self(milk_amount: IntArray): IntArray { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param milk_amount int整型一维数组 * @return int整型一维数组 */ public int[] product_except_self (int[] milk_amount) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param milk_amount int整型一维数组 * @return int整型一维数组 */ export function product_except_self(milk_amount: number[]): number[] { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param milk_amount int整型一维数组 * @return int整型一维数组 */ func product_except_self ( _ milk_amount: [Int]) -> [Int] { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param milk_amount int整型一维数组 * @return int整型一维数组 */ pub fn product_except_self(&self, milk_amount: Vec
) -> Vec
{ // write code here } }
[5, 7, 3, 1]
[21,15,35,105]