-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.rb
29 lines (27 loc) · 904 Bytes
/
bot.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
class Bot
def initialize(nombre,diccL,intentos,termine,consola)
@nombre,@diccL,@intentos,@termine,@consola=nombre,diccL,intentos,termine,consola
#@consola.synchronize{puts @intentos}
end
def buscarAlt()
#@consola.synchronize{puts @diccL.to_s}
#@consola.synchronize{puts @intentos.to_s}
for intento in @intentos
#@consola.synchronize{puts @nombre+":"+intento.class.to_s}
for palabra in @diccL
#@consola.synchronize{puts @nombre+":"+palabra.class.to_s+"\n "}
#@consola.synchronize{puts @nombre+":"+palabra+":"+intento}
if palabra==intento
@consola.synchronize{puts "\n============Anagrama-> " + @nombre+":"+palabra}
#palabra = nil
end
#intento = nil
end
end
#@consola.synchronize{puts @nombre + ": Finalize"}
#@termine.push("*")
end
def limpiarIntento()
return nil
end
end