Skip to content

Commit

Permalink
Update buscar_elemento_en_lista.pas
Browse files Browse the repository at this point in the history
  • Loading branch information
OmgCopito95 authored Sep 4, 2023
1 parent b852a44 commit fa94af9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IMPERATIVO/RECURSION/Listas/buscar_elemento_en_lista.pas
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//BUSCA UN ELEMENTO EN UNA LISTA DE MANERA RECURSIVA

function buscar(l:lista; dimL:integer):boolean;
function buscar(l:lista; x:integer):boolean;
begin
if(l=nil)then
buscar:=false
Expand Down

0 comments on commit fa94af9

Please sign in to comment.