Create a python list of six number. Replace the second,fourth,and sixth
number with the cube of the number of its immediate left.
Answers
Answered by
1
Answer:
Input: [1, 2, 3, 4, 5, 6]
Output: [1, 1, 3, 27, 5, 125]
Similar questions