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

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

序列的第一個(gè)和最后一個(gè)索引

序列的第一個(gè)和最后一個(gè)索引

慕雪6442864 2023-08-22 17:18:43
我有興趣在至少三個(gè)相同數(shù)字的序列上找到第一個(gè)和最后一個(gè)索引(它們必須排成一行)。如果有更多序列,索引(開始-結(jié)束)將附加到列表中。例子: s = [1,1,1,1,4,1,1,1]  --> output: [0,3,5,7]s = [1,1,1,1,4,1,1,1]c = []indexes = []for i in range(len(s)):    if s.count(s[i]) >= 3:        c.append(i)my output: [0, 1, 2, 3, 5, 6, 7]Python順序
查看完整描述

2 回答

?
呼如林

TA貢獻(xiàn)1798條經(jīng)驗(yàn) 獲得超3個(gè)贊

你可以使用groupby.?讓我們從以下內(nèi)容開始:

s = [1, 1, 1, 1, 4, 1, 1, 1]

for value, group in itertools.groupby(s):

? ? # print(value)

? ? print(list(group))

這會(huì)給你


[1, 1, 1, 1]

[4]

[1, 1, 1]

現(xiàn)在讓我們添加您的條件并跟蹤當(dāng)前位置。


s = [1, 1, 1, 1, 4, 1, 1, 1]

positions = []

current_position = 0

for value, group in itertools.groupby(s):

? ? group_length = len(list(group))

? ? if group_length >= 3:

? ? ? ? positions.extend([current_position, current_position + group_length - 1])

? ? current_position += group_length

print(positions)

這會(huì)給你想要的結(jié)果[0, 3, 5, 7]。


查看完整回答
反對(duì) 回復(fù) 2023-08-22
?
慕絲7291255

TA貢獻(xiàn)1859條經(jīng)驗(yàn) 獲得超6個(gè)贊

在這里,嘗試使用此代碼來解決您的問題:


prev_value = s[0]

prev_index = 0

consecutive_count = 0


for index, value in enumerate(s):

    if value == prev_value:

        consecutive_count += 1

    else:

        if consecutive_count > 2:

             indexes.append(prev_index)

             indexes.append(index - 1)

        consecutive_count = 1

        prev_value = value

        prev_index = index


if consecutive_count > 2:

    indexes.append(prev_index)

    indexes.append(index)


查看完整回答
反對(duì) 回復(fù) 2023-08-22
  • 2 回答
  • 0 關(guān)注
  • 202 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)