Diferencia entre revisiones de «Prueba»

De SIU
Saltar a: navegación, buscar
Línea 6: Línea 6:
 
<syntaxhighlight lang="python" highlight="1,5-7">
 
<syntaxhighlight lang="python" highlight="1,5-7">
 
def quickSort(arr):
 
def quickSort(arr):
#less = []
+
    less = []
 
     pivotList = []
 
     pivotList = []
 
     more = []
 
     more = []

Revisión del 16:55 2 sep 2015

  1. Instale su extensión.
    Generally, at the end of the LocalSettings.php file (but above the PHP end-of-code delimiter, "?>", if present), the following line should be added:
    require_once( "$IP/extensions/extension_name/extension_name.php" );


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


http://documentacion.siu.edu.ar/wiki/Prueba