Get One Dimensional Array Using Slice and Only Positive Indexes
Let's examine the syntax of slicing: array[start:end:step], where:
startis the index from which the slicing begins;endis the index at which the slicing concludes (note that this index is not included);stepis the parameter that specifies the intervals between the indices.
Tehtävä
Swipe to start coding
Consider the following array: [11, 5, 87, 1, 44, 11, 6, 0, -5].
You need to obtain the following array: [87, 11, -5].
Use a slice with ONLY NON-NEGATIVE start, end, and step values.
Ratkaisu
Oliko kaikki selvää?
Kiitos palautteestasi!
Osio 3. Luku 7
single
Kysy tekoälyä
Kysy tekoälyä
Kysy mitä tahansa tai kokeile jotakin ehdotetuista kysymyksistä aloittaaksesi keskustelumme
Mahtavaa!
Completion arvosana parantunut arvoon 4.76
Get One Dimensional Array Using Slice and Only Positive Indexes
Pyyhkäise näyttääksesi valikon
Let's examine the syntax of slicing: array[start:end:step], where:
startis the index from which the slicing begins;endis the index at which the slicing concludes (note that this index is not included);stepis the parameter that specifies the intervals between the indices.
Tehtävä
Swipe to start coding
Consider the following array: [11, 5, 87, 1, 44, 11, 6, 0, -5].
You need to obtain the following array: [87, 11, -5].
Use a slice with ONLY NON-NEGATIVE start, end, and step values.
Ratkaisu
Oliko kaikki selvää?
Kiitos palautteestasi!
Osio 3. Luku 7
single