From 9728ca065175b408c8c2b09fa77c853f6da1e0b7 Mon Sep 17 00:00:00 2001 From: Arturo Perez Date: Mon, 12 Aug 2019 09:40:28 -0700 Subject: [PATCH] added translation (#27606) * added translation * fix: changed c++ to cpp --- .../spanish/algorithms/search-algorithms/binary-search/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/spanish/algorithms/search-algorithms/binary-search/index.md b/guide/spanish/algorithms/search-algorithms/binary-search/index.md index 16480514eb..82f8c99b33 100644 --- a/guide/spanish/algorithms/search-algorithms/binary-search/index.md +++ b/guide/spanish/algorithms/search-algorithms/binary-search/index.md @@ -209,7 +209,7 @@ def binary_search(arr, l, r, target): ### Ejemplo en C ++ ```cpp -// Binary Search using iteration +// Búsqueda binaria usando iteración int binary_search(int arr[], int beg, int end, int num) { while(beg <= end){