0
Rate my coding challenge [Python]
https://code.sololearn.com/cSxxwmeoyehw/#py Is the question being asked clear enough? Any other feedback also appreciated. Thanks.
5 Réponses
+ 2
Way too easy to be called a challenge.
+ 2
By writting your list with indentation, you can more easily read it and see how nested are the item ;)
myNestedLists = [
'a', # [0]
[ # [1]
'b', # [1][0]
[ # [1][1]
'c', # [1][1][0]
[ # [1][1][1]
'd', # [1][1][1][0]
'e', # [1][1][1][1]
'f' # [1][1][1][2]
],
'g' # [1][1][2]
],
'h' # [1][2]
],
'i' # [2]
]
+ 1
@ Ferontwix - Thanks for the feedback.
Did you have 'no idea' what to do, or, did you figure what was required after a bit of thought?
+ 1
I figured it out
+ 1
can you help, I'm trying to help some one is having difficulty https://www.sololearn.com/Discuss/338990/?ref=app but i have the same question.