Capital Positions

Sometimes you need to quickly find special characters in a string, such as checking a code format or highlighting uppercase letters in a word. Write a function capitals that takes word and returns a list of the indices of all uppercase letters. Indices start from 0, as usual in Python.

Примеры

Ввод
"CodEwArs"
Вывод
[0, 3, 5]
Ввод
"abcdef"
Вывод
[]
Ввод
"ABC"
Вывод
[0, 1, 2]

Нужно реализовать

def capitals(word: str) -> list[int]:

Теги

stringslistsarray
PostgreSQLv16

Qui apparirà il risultato dell'esecuzione del codice

Tests12
Visible tests
Test nascosto 7
Test nascosto 8
Test nascosto 9
Test nascosto 10
Test nascosto 11
Test nascosto 12

They run when you press "Submit" — your whole solution is checked against them so you can't hard-code answers for the visible cases.

Focus radio
Paused · SomaFM · Fluid