Hilfe:Sandkasten: Unterschied zwischen den Versionen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 3: | Zeile 3: | ||
<div class="achtung">Achtung!</div> | <div class="achtung">Achtung!</div> | ||
==Test Math== | |||
<math>x + y = \frac{3.5}{7.8}</math> | |||
==Test syntax highlight== | |||
<syntaxhighlight lang="python" line> | |||
def quick_sort(arr): | |||
less = [] | |||
pivot_list = [] | |||
more = [] | |||
if len(arr) <= 1: | |||
return arr | |||
else: | |||
pass | |||
</syntaxhighlight> | |||
==Test VideoEmbed== | ==Test VideoEmbed== | ||
<youtube>https://www.youtube.com/watch?v=ae7Xah35vxw</youtube> | <youtube>https://www.youtube.com/watch?v=ae7Xah35vxw</youtube> | ||
Aktuelle Version vom 10. September 2026, 16:29 Uhr
Formatierung
Eine Info
Achtung!
Test Math
[math]\displaystyle{ x + y = \frac{3.5}{7.8} }[/math]
Test syntax highlight
def quick_sort(arr):
less = []
pivot_list = []
more = []
if len(arr) <= 1:
return arr
else:
pass