Element - Þṁ - Mold without repeat
Description
Mold a list without repeating elements.
Overloads
lst-lst-mold a list without repeating elements
Examples
⟨1|2|3|4|5|6|7|8|9⟩ ⟨⟨1⟩|⟨1|2⟩|⟨1|2|3⟩|⟨1⟩|⟨1|2⟩|⟨1|2|3⟩⟩ Þṁ=⟨⟨1⟩|⟨2|3⟩|⟨4|5|6⟩|⟨7⟩|⟨8|9⟩⟩⟨1|2|3|4|5|6|7⟩ ⟨⟨8|9⟩|10|11|12|⟨13|14⟩⟩ Þṁ=⟨⟨1|2⟩|3|4|5|⟨6|7⟩⟩⟨1|2|3⟩ ⟨⟨4⟩|⟨⟩|⟨6⟩⟩ Þṁ=⟨⟨1⟩|⟨⟩|⟨2⟩⟩