Markdown Test: Difference between revisions

From ourResearch
No edit summary
No edit summary
Line 53: Line 53:


[ ] undone
[ ] undone
[x] done
[x] done



Revision as of 07: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

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

I love meow

waifu

[ ] undone

[x] done

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