Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Beide Seiten der vorigen RevisionVorhergehende Überarbeitung | |||
| markow:non-unique_elements [2019/08/25 23:03] – Externe Bearbeitung 127.0.0.1 | markow:non-unique_elements [2024/03/03 22:36] (aktuell) – Tscherter Vincent | ||
|---|---|---|---|
| Zeile 1: | Zeile 1: | ||
| + | ====== Non-unique Elements ====== | ||
| + | {{ : | ||
| + | You are given a non-empty list of integers (X). For this task, you should return a list consisting of only the non-unique elements in this list. To do so you will need to remove all unique elements (elements which are contained in a given list only once). When solving this task, do not change the order of the list. Example: '' | ||
| + | |||
| + | == Examples == | ||
| + | ^ Input ^ Output | | ||
| + | | '' | ||
| + | | '' | ||
| + | | '' | ||
| + | | '' | ||
| + | |||
| + | == Solution == | ||
| + | <code text> | ||
| + | / | ||
| + | / | ||
| + | /ζ(\d+)(, )?// | ||
| + | /, ]/]/ | ||
| + | /[ζλ]//g ! | ||
| + | / | ||
| + | </ | ||
| + | |||
| + | == Reference == | ||
| + | * https:// | ||
| + | |||