User talk:Kunda1

From FreeCAD Documentation

Ideas for projects

Wiki Markup Cheatsheet

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