Ask Your Question

zivaoupas's profile - activity

2020-11-11 03:00:49 +0100 received badge  Popular Question (source)
2020-11-11 03:00:49 +0100 received badge  Famous Question (source)
2020-11-11 03:00:49 +0100 received badge  Notable Question (source)
2018-06-07 04:05:19 +0100 received badge  Nice Question (source)
2018-06-05 21:03:15 +0100 received badge  Scholar (source)
2018-06-05 21:03:11 +0100 received badge  Supporter (source)
2018-06-05 20:23:07 +0100 received badge  Student (source)
2018-06-05 20:14:34 +0100 asked a question Could anyone explain this unexpected behaviour of the interface?

Input

w = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21]
w

Output

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21]

Input

w = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]
w

Output

[0,
 1,
 2,
 3,
 4,
 5,
 6,
 7,
 8,
 9,
 10,
 11,
 12,
 13,
 14,
 15,
 16,
 17,
 18,
 19,
 20,
 21,
 22]