functional

functional

Not enough ratings
UNSHIFT
   
Award
Favorite
Favorited
Unfavorite
File Size
Posted
503.000 B
23 Feb, 2024 @ 7:16am
1 Change Note ( view )

Subscribe to download
UNSHIFT

Description
Write function UNSHIFT, that given a list L and a term M,
reduces to a list with M as its last element and L as the
rest of the list.
Example: UNSHIFT A [B, C, D] = [B, C, D, A]