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.
 
 
 

32 lines
285 B

Vector()
0
//push 1
Vector(1)
0
//push 2
Vector(1,2)
1
//forward
Vector(1,2)
1
//backward
Vector(1,2)
0
//backward
Vector(1,2)
0
//push 3
Vector(1,2,3)
sp 2
//push 4
Vector(1,2,3,4)
sp 3
//push 5
Vector(1,2,3,4,5)
sp 4
//backward
Vector(1,2,3,4,5)
sp 3
//push 6
Vector(1,2,3,4,6)
sp 3