第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Python 聲明性循環(huán)重構(需要訪問多個元素)

Python 聲明性循環(huán)重構(需要訪問多個元素)

猛跑小豬 2022-08-25 15:13:37
我有這段代碼,并試圖重構它以聲明性。但是AFAIK,所有聲明式方法都會循環(huán)遍歷容器的每個元素,而不是像這樣的幾個map()reduce()filter()def arrayCheck(nums):    # Note: iterate with length-2, so can use i+1 and i+2 in the loop    for i in range(len(nums)-2):        # Check in sets of 3 if we have 1,2,3 in a row        if nums[i]==1 and nums[i+1]==2 and nums[i+2]==3:            return True    return False那么如何編寫這段代碼,聲明性的方式呢?
查看完整描述

1 回答

?
慕娘9325324

TA貢獻1783條經(jīng)驗 獲得超4個贊

首先,您可以使用 a 來重寫循環(huán):zip


def array_check(nums):

    for a, b, c in zip(nums, nums[1:], nums[2:]):

        if a == 1 and b == 2 and c == 3:

            return True

    return False

然后,使用元組比較:


def array_check(nums):

    for a, b, c in zip(nums, nums[1:], nums[2:]):

        if (a, b, c) == (1, 2, 3):

            return True

    return False

然后是內(nèi)置的:any


def array_check(nums):

    return any((a, b, c) == (1, 2, 3) for a, b, c in zip(nums, nums[1:], nums[2:]))

測試:


>>> array_check([1,3,4,1,2,3,5])

True

>>> array_check([1,3,4,1,3,5])

False

注意:有關更快的版本,請參閱下面的@juanpa.arrivillaga評論。


如果你想模仿功能風格:


import operator, functools


def array_check(nums):

    return any(map(functools.partial(operator.eq, (1,2,3)), zip(nums, nums[1:], nums[2:])))

但這真的很不合理!


查看完整回答
反對 回復 2022-08-25
  • 1 回答
  • 0 關注
  • 96 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網(wǎng)微信公眾號