Append
(Built-in Mathematica Symbol) Append[expr, elem] gives expr with elem appended.
CellPrint[expr] inserts expr as a complete cell in the current notebook just below the cell being evaluated. CellPrint[{expr_1, expr_2, ...}] inserts a sequence of cells.
Complement[e_all, e_1, e_2, ...] gives the elements in e_all which are not in any of the e_i.
EvenQ
(Built-in Mathematica Symbol) EvenQ[expr] gives True if expr is an even integer, and False otherwise.
Notebook[{cell_1, cell_2, ...}] is the low-level construct that represents a notebook manipulated by the Mathematica front end.
RotateLeft[expr, n] cycles the elements in expr n positions to the left. RotateLeft[expr] cycles one position to the left. RotateLeft[expr, {n_1, n_2, ...}] cycles elements ...
RotateRight[expr, n] cycles the elements in expr n positions to the right. RotateRight[expr] cycles one position to the right. RotateRight[expr, {n_1, n_2, ...}] cycles ...
The names of built-in functions follow some general guidelines. The main expression or object on which a built-in function acts is usually given as the first argument to the ...
Ordering[list] gives the positions in list at which each successive element of Sort[list] appears. Ordering[list, n] gives the positions in list at which the first n elements ...
Permutations[list] generates a list of all possible permutations of the elements in list. Permutations[list, n] gives all permutations containing at most n ...