Похожие чаты

Okay, let's say; [['a', 'b'], 1, 2, ['a', 'b'], 1, 2] Is

there a "better" way to add *adjacent* numbers in the list and replace adjacent indexes with result of addition?

Expected:

[['a', 'b'], 3, ['a', 'b'], 3]

Problem is, list can be of any length and cannot guarantee *adjacent* numbers always. I mean, the solution is only for adjacent numbers

7 ответов

12 просмотров

well just loop over it

Пользователь-6165a Автор вопроса
drunktimelord
well just loop over it

Do you have a pseudo code?

Пользователь 6165a
Do you have a pseudo code?

new = [] while i < len(array): if array[i] is integer and array[i+1] is integer: new.append(array[i] + array[i+1]) i += 2 else: new.append(array[i]) i += 1

Пользователь-6165a Автор вопроса
Пользователь 6165a
Here, i+1 eventually cause indexOUTerror

then handle 0th index separately and start i at 1

Пользователь-6165a Автор вопроса
Пользователь 6165a
Who knows 0th index is not number

new = [] if array[0] is int and array[1] is int: new.append(array[0] + array[1]) i = 2 else: new.append(array[0]) i = 1 while i < len(array): if array[i] is integer and array[i-1] is integer: new.append(array[i] + array[i-1]) i += 2 else: new.append(array[i-1]) i += 1

Похожие вопросы

Обсуждают сегодня

Господа, а что сейчас вообще с рынком труда на делфи происходит? Какова ситуация?
Rꙮman Yankꙮvsky
29
А вообще, что может смущать в самой Julia - бы сказал, что нет единого стандартного подхода по многим моментам, поэтому многое выглядит как "хаки" и произвол. Короче говоря, с...
Viktor G.
2
@Benzenoid can you tell me the easiest, and safest way to bu.y HEX now?
Živa Žena
20
This is a question from my wife who make a fortune with memes 😂😂 About the Migration and Tokens: 1. How will the old tokens be migrated to the new $LGCYX network? What is th...
🍿 °anton°
2
30500 за редактор? )
Владимир
47
а через ESC-код ?
Alexey Kulakov
29
What is the Dex situation? Agora team started with the Pnetwork for their dex which helped them both with integration. It’s completed but as you can see from the Pnetwork ann...
Ben
1
Гайс, вопрос для разносторонее развитых: читаю стрим с юарта, нада выделять с него фреймы с определенной структурой, если ли чо готовое, или долбаться с ринг буффером? нада у...
Vitaly
9
Anyone knows where there are some instructions or discort about failed bridge transactions ?
Jochem
21
@lozuk how do I get my phex copies of my ehex from a atomic wallet, to move to my rabby?
Justfrontin 👀
11
Карта сайта