Markdown Test: Difference between revisions

From ourResearch
No edit summary
No edit summary
Line 23: Line 23:


$O(n\log(n))$
$O(n\log(n))$
O(n\log(n))


$$
$$
O(n\log(n))
O(n\log(n))
$$
$$
</markdown>
<math>Meow</math>
<math>
O(n\log(n))
</math>
<syntaxhighlight lang="python" line="1">
def quick_sort(arr):
less = []
pivot_list = []
more = []
if len(arr) <= 1:
return arr
else:
pass
</syntaxhighlight>
<markdown>


# I love meow
# I love meow

Revision as of 10:40, 27 April 2024

Emphasis

This is bold text

This is bold text

This is italic text

This is italic text

Strikethrough

tag1 tag2
item1 items

I love meow

waifu

  • undone
  • done checked
def quick_sort(arr):
    less = []
    pivot_list = []
    more = []
    if len(arr) <= 1:
        return arr
    else:
        pass