1 Star 1 Fork 0

bywuuu/pyTest

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
构建乘积数组.py 699 Bytes
一键复制 编辑 原始数据 按行查看 历史
bywuuu 提交于 2019-12-14 11:00 . debug
# 给定一个数组A[0,1,...,n-1],请构建一个数组B[0,1,...,n-1],其中B中的元素B[i]=A[0]*A[1]*...*A[i-1]*A[i+1]*...*A[n-1]。
# 不能使用除法。
# 意思是,B中每一个元素都是A当中去掉i那个下标的元素的所有数字相乘
# 比如:A=【1,2,3,4,5】,B[1]=1*3*4*5=60,B[0]=2*3*4*5=120
def multiply(A):
B = []
for i in range(len(A)):
if i==0:
B.append(get_multi(A[1:]))
elif i!=len(A)-1:
B.append(get_multi(A[:i])*get_multi(A[i+1:]))
else:
B.append(get_multi(A[:i]))
return B
def get_multi(my_list):
temp = 1
for i in my_list:
temp*=i
return temp
print(multiply([1,2,3]))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bywuuu/pyTest.git
[email protected]:bywuuu/pyTest.git
bywuuu
pyTest
pyTest
master

搜索帮助