User Portlet
| Discussions |
|---|
| Hello Andre, this is a little faster approach: In[11]:= ReplaceAll[{x, x, x}, {x__} -> { a, b, c}] Out[11]= {a, b, c} Here, the result is independent from the list (input) because of _ _ (blank sequence). For example: ... |