SyntaxHighlight
De Mi caja de notas
Révision datée du 4 novembre 2019 à 17:57 par Xtof (discussion | contributions) (Page créée avec « <syntaxhighlight lang="Python" line='line'> def quickSort(arr): less = [] pivotList = [] more = [] if len(arr) <= 1: return arr else: pass </syntaxhighlight> »)
Révision datée du 4 novembre 2019 à 17:57 par Xtof (discussion | contributions) (Page créée avec « <syntaxhighlight lang="Python" line='line'> def quickSort(arr): less = [] pivotList = [] more = [] if len(arr) <= 1: return arr else: pass </syntaxhighlight> »)
1 def quickSort(arr):
2 less = []
3 pivotList = []
4 more = []
5 if len(arr) <= 1:
6 return arr
7 else:
8 pass