Concept Flow - LPUSH and RPUSH for insertion
Start with empty list
LPUSH value
Value added to LEFT (front)
RPUSH value
Value added to RIGHT (end)
List updated with new elements
Repeat as needed or END
LPUSH adds elements to the front of the list, RPUSH adds elements to the end, updating the list each time.