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
Prijavite se za ogled zgodovine oddaj
PrijavaPrijavite se za uporabo mentorja UI
PrijavaTests12
Visible tests
Skriti test 7
Skriti test 8
Skriti test 9
Skriti test 10
Skriti test 11
Skriti 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