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

Tutaj pojawi się wynik wykonania kodu

Tests12
Visible tests
Ukryty test 7
Ukryty test 8
Ukryty test 9
Ukryty test 10
Ukryty test 11
Ukryty test 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