You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
160 B
16 lines
160 B
x = x[:]
|
|
x = x[::]
|
|
x = x[::c]
|
|
x = x[:b]
|
|
x = x[:b:]
|
|
x = x[:b:c]
|
|
x = x[a]
|
|
x = x[a:]
|
|
x = x[a::]
|
|
x = x[a::c]
|
|
x = x[a:b]
|
|
x = x[a:b:]
|
|
x = x[a:b:c]
|
|
|
|
x[0] = 1
|
|
x[x] = x
|
|
|