Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
markow:non-unique_elements [2017/09/05 22:29] – angelegt Tscherter Vincent | 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:// | ||
+ | |||