From 3e687f1a8ccb1cd0d52a966005551d528ca141df Mon Sep 17 00:00:00 2001 From: Boris Verkhovskiy Date: Sat, 6 Apr 2024 08:33:50 -0700 Subject: Remove leading and trailing empty lines in code blocks --- es-es/asymptotic-notation-es.html.markdown | 1 + es-es/awk-es.html.markdown | 1 - es-es/bf-es.html.markdown | 2 +- es-es/binary-search-es.html.markdown | 5 ++--- es-es/c++-es.html.markdown | 2 +- es-es/c-es.html.markdown | 1 - es-es/coldfusion-es.html.markdown | 1 + es-es/common-lisp-es.html.markdown | 1 - es-es/csharp-es.html.markdown | 1 - es-es/dart-es.html.markdown | 1 - es-es/edn-es.html.markdown | 1 - es-es/elixir-es.html.markdown | 1 - es-es/factor-es.html.markdown | 2 -- es-es/forth-es.html.markdown | 1 - es-es/groovy-es.html.markdown | 3 --- es-es/hack-es.html.markdown | 1 - es-es/haml-es.html.markdown | 1 - es-es/haskell-es.html.markdown | 1 - es-es/html-es.html.markdown | 1 - es-es/java-es.html.markdown | 1 - es-es/jquery-es.html.markdown | 4 ---- es-es/json-es.html.markdown | 1 - es-es/lambda-calculus-es.html.markdown | 5 +++++ es-es/learnsmallbasic-es.html.markdown | 2 +- es-es/less-es.html.markdown | 4 ---- es-es/matlab-es.html.markdown | 1 - es-es/objective-c-es.html.markdown | 2 +- es-es/pascal-es.html.markdown | 1 - es-es/perl-es.html.markdown | 1 - es-es/php-composer-es.html.markdown | 2 +- es-es/php-es.html.markdown | 1 - es-es/pyqt-es.html.markdown | 1 - es-es/python-es.html.markdown | 1 - es-es/pythonstatcomp-es.html.markdown | 1 - es-es/r-es.html.markdown | 4 ---- es-es/raku-es.html.markdown | 2 +- es-es/sass-es.html.markdown | 3 --- es-es/scala-es.html.markdown | 2 -- es-es/tcl-es.html.markdown | 2 -- es-es/tmux-es.html.markdown | 4 ---- es-es/tmux.html.markdown | 4 ---- es-es/typescript-es.html.markdown | 1 - es-es/visualbasic-es.html.markdown | 1 - es-es/xml-es.html.markdown | 3 --- es-es/yaml-es.html.markdown | 1 - 45 files changed, 15 insertions(+), 68 deletions(-) (limited to 'es-es') diff --git a/es-es/asymptotic-notation-es.html.markdown b/es-es/asymptotic-notation-es.html.markdown index 3507429c..7ee21c6d 100644 --- a/es-es/asymptotic-notation-es.html.markdown +++ b/es-es/asymptotic-notation-es.html.markdown @@ -117,6 +117,7 @@ Echemos un vistazo a la definición de O-grande. ``` 3log n + 100 <= c * log n ``` + ¿Hay alguna constante c que satisface esto para todo n? ``` diff --git a/es-es/awk-es.html.markdown b/es-es/awk-es.html.markdown index 1ee12956..2165c47a 100644 --- a/es-es/awk-es.html.markdown +++ b/es-es/awk-es.html.markdown @@ -354,7 +354,6 @@ END { if (nlines) print "La edad promedio para " name " es " sum / nlines } - ``` Más información: diff --git a/es-es/bf-es.html.markdown b/es-es/bf-es.html.markdown index df1ae2e7..0769e2a7 100644 --- a/es-es/bf-es.html.markdown +++ b/es-es/bf-es.html.markdown @@ -16,7 +16,6 @@ Puedes probar brainfuck en tu navegador con [brainfuck-visualizer](http://fatihe ``` - Cualquier caracter que no sea "><+-.,[]" (sin incluir las comillas) será ignorado. @@ -84,6 +83,7 @@ hasta la próxima vez. Para resolver este problema también incrementamos la celda #4 y luego copiamos la celda #4 a la celda #2. La celda #3 contiene el resultado. ``` + Y eso es brainfuck. No es tan difícil, ¿verdad? Como diversión, puedes escribir tu propio intérprete de brainfuck o tu propio programa en brainfuck. El intérprete es relativamente sencillo de hacer, pero si eres masoquista, diff --git a/es-es/binary-search-es.html.markdown b/es-es/binary-search-es.html.markdown index a1b42d21..51776aba 100644 --- a/es-es/binary-search-es.html.markdown +++ b/es-es/binary-search-es.html.markdown @@ -22,8 +22,8 @@ Un método sencillo para poner en práctica la búsqueda es hacer una búsqueda Búsqueda Lineal: O (n) Tiempo lineal Búsqueda Binaria: O ( log(n) ) Tiempo logarítmico - ``` + ``` def search(arr, x): @@ -33,8 +33,8 @@ def search(arr, x): return i return -1 - ``` + ## Algoritmo de Búsqueda Binaria El requisito básico para que la búsqueda binaria funcione es que los datos a buscar deben estar ordenados (en cualquier orden). @@ -49,7 +49,6 @@ La idea de la búsqueda binaria es usar la información de que la matriz está o 3) Si no coincide, si x es mayor que el elemento del medio, entonces x solo puede estar en la mitad derecha justo después del elemento del medio. Así que recurrimos a la mitad derecha. 4) Si no (x es más pequeño) recurrimos a la mitad izquierda. Siguiendo la implementación recursiva de búsqueda binaria. - ``` ### Notas finales diff --git a/es-es/c++-es.html.markdown b/es-es/c++-es.html.markdown index f624d3c7..16abdcb0 100644 --- a/es-es/c++-es.html.markdown +++ b/es-es/c++-es.html.markdown @@ -818,8 +818,8 @@ v.push_back(Foo()); // Nuevo valor se copia en el primer Foo que insertamos // Consulta la sección acerca de los objetos temporales para la // explicación de por qué esto funciona. v.swap(vector()); - ``` + Otras lecturas: * Una referencia del lenguaje hasta a la fecha se puede encontrar en [CPP Reference](http://cppreference.com/w/cpp). diff --git a/es-es/c-es.html.markdown b/es-es/c-es.html.markdown index ae357d91..249046ba 100644 --- a/es-es/c-es.html.markdown +++ b/es-es/c-es.html.markdown @@ -414,7 +414,6 @@ typedef void (*my_fnp_type)(char *); // Es usado para declarar la variable puntero actual: // ... // my_fnp_type f; - ``` ## Otras lecturas diff --git a/es-es/coldfusion-es.html.markdown b/es-es/coldfusion-es.html.markdown index 2e98f910..db7fdaa9 100644 --- a/es-es/coldfusion-es.html.markdown +++ b/es-es/coldfusion-es.html.markdown @@ -234,6 +234,7 @@ ColdFusion comenzó como un lenguaje basado en etiquetas. Casi toda la funcional Código de referencia (las funciones deben devolver algo para admitir IE) ``` + ```cfs diff --git a/es-es/common-lisp-es.html.markdown b/es-es/common-lisp-es.html.markdown index 526ea621..d764bd46 100644 --- a/es-es/common-lisp-es.html.markdown +++ b/es-es/common-lisp-es.html.markdown @@ -20,7 +20,6 @@ popular y reciente es [Land of Lisp](http://landoflisp.com/). Un nuevo libro ace prácticas, [Common Lisp Recipes](http://weitz.de/cl-recipes/), fue publicado recientemente. ```lisp - ;;;----------------------------------------------------------------------------- ;;; 0. Sintaxis ;;;----------------------------------------------------------------------------- diff --git a/es-es/csharp-es.html.markdown b/es-es/csharp-es.html.markdown index 72a0f90c..d8d08f07 100644 --- a/es-es/csharp-es.html.markdown +++ b/es-es/csharp-es.html.markdown @@ -599,7 +599,6 @@ namespace Learning } } } // Fin del espacio de nombres - ``` ## Temas no cubiertos diff --git a/es-es/dart-es.html.markdown b/es-es/dart-es.html.markdown index d0f57b95..5c3baf40 100644 --- a/es-es/dart-es.html.markdown +++ b/es-es/dart-es.html.markdown @@ -518,7 +518,6 @@ main() { example27, example28, example29, example30 ].forEach((ef) => ef()); } - ``` ## Lecturas adicionales diff --git a/es-es/edn-es.html.markdown b/es-es/edn-es.html.markdown index 32bba37d..ab33f61c 100644 --- a/es-es/edn-es.html.markdown +++ b/es-es/edn-es.html.markdown @@ -101,7 +101,6 @@ false (edn/read-string {:lectores {'MyYelpClone/MenuItem map->menu-item}} "#MyYelpClone/MenuItem {:nombre \"huevos-benedict\" :clasificacion 10}") ; -> #user.MenuItem{:nombre "huevos-benedict", :clasificacion 10} - ``` # Referencias diff --git a/es-es/elixir-es.html.markdown b/es-es/elixir-es.html.markdown index 37acf6ad..14d2938b 100644 --- a/es-es/elixir-es.html.markdown +++ b/es-es/elixir-es.html.markdown @@ -16,7 +16,6 @@ Es completamente compatibe con Erlang, sin embargo, ofrece una sintaxis más est y otras características más. ```elixir - # Los comentarios de única línea # comienzan con un símbolo numérico. diff --git a/es-es/factor-es.html.markdown b/es-es/factor-es.html.markdown index 67c60de7..a0ceb27d 100644 --- a/es-es/factor-es.html.markdown +++ b/es-es/factor-es.html.markdown @@ -191,8 +191,6 @@ name get-global . ! "Bob" 0 [ 2 + ] nth ! 2 1 [ 2 + ] nth ! + [ 2 + ] \ - suffix ! Quotation [ 2 + - ] - - ``` ##Listo para más? diff --git a/es-es/forth-es.html.markdown b/es-es/forth-es.html.markdown index 61123151..68068ba9 100644 --- a/es-es/forth-es.html.markdown +++ b/es-es/forth-es.html.markdown @@ -216,7 +216,6 @@ page \ Terminando Gforth: \ bye - ``` ##Listo Para Mas? diff --git a/es-es/groovy-es.html.markdown b/es-es/groovy-es.html.markdown index 262d5e6a..e22de3c5 100644 --- a/es-es/groovy-es.html.markdown +++ b/es-es/groovy-es.html.markdown @@ -11,7 +11,6 @@ filename: groovy-es.html Groovy - Un lenguaje dinámico para la plataforma Java [Leer más aquí.](http://www.groovy-lang.org/) ```groovy - /* Hora de configurar: @@ -411,8 +410,6 @@ int sum(int x, int y) { } assert sum(2,5) == 7 - - ``` ## Más recursos diff --git a/es-es/hack-es.html.markdown b/es-es/hack-es.html.markdown index 1059117a..368e0237 100644 --- a/es-es/hack-es.html.markdown +++ b/es-es/hack-es.html.markdown @@ -295,7 +295,6 @@ class Samuel $cat = new Samuel(); $cat instanceof KittenInterface === true; // True - ``` ## Más información diff --git a/es-es/haml-es.html.markdown b/es-es/haml-es.html.markdown index be90b8f3..88e7558b 100644 --- a/es-es/haml-es.html.markdown +++ b/es-es/haml-es.html.markdown @@ -150,7 +150,6 @@ $ haml archivo_entrada.haml archivo_salida.html :javascript console.log('Este es un