| This is read-only version of the old wiki, feel free to browse it for materials. If you want to share your own materials, please use GeoGebraTube instead. You are also welcome to help us enhance the new wiki. If any questions arise, please contact the webmaster. |
Union Command
Syntax
Union[list L1, list L2]
Action
Appends the second list to the end of the first and removes elements that appear multiple times.
Examples
- Union[list1,{}] creates a list containing each element of list1 exactly once
- Union[{1,2,3},{2,4,6,1}] returns {1,2,3,4,6}