User talk:Kunda1

From FreeCAD Documentation
Revision as of 13:24, 2 June 2019 by Kunda1 (talk | contribs) (testing syntaxhighlight)

Ideas for projects

Wiki Markup Cheatsheet

def quickSort(arr):
    less = []
    pivotList = []
    more = []
    if len(arr) <= 1:
        return arr