79481390

Date: 2025-03-03 15:36:09
Score: 1
Natty:
Report link

Finally, I found the following argument expansion can work.

 Y= [Y[0],*Y[1:n//2]*2]

Since we can have

 >>>a, *b, c = [1, 2, 3, 4, 5] to 
 >>>b
 >>>[2, 3, 4]

Also if

>>>a = [*'PYTHON']
>>>a
>>>['P', 'Y', 'T', 'H', 'O', 'N']
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: MathArt