Commit fe215e30 by Jose Baez

Se corrije metodo TRIO

parent dfe88611
...@@ -76,35 +76,21 @@ public class Juego { ...@@ -76,35 +76,21 @@ public class Juego {
valores.add(extraer(c.valor)); valores.add(extraer(c.valor));
} }
Collections.sort(valores); Collections.sort(valores);
int counter=0; int[] numerosArray = pasarAArray(valores);
int numero=0; int con=0;
int cantidadNumero=0; for (int i = 0; i < numerosArray.length-1; i++) {
int cantidadNumero2=0; if (numerosArray[i] == numerosArray[i+1]) {
for(int i=1; i<14; i++){ con++;
for (int j=0; j<valores.size(); j++) { if (con==3 && numerosArray[2] == numerosArray[4]){
int s= valores.get(j); return true;
if(s == i){ }else if(con==3 && numerosArray[2] == numerosArray[0]){
counter++; return true;
}
}
if(counter > cantidadNumero){
numero=i;
cantidadNumero=counter;
cantidadNumero2=counter;
} }
if((counter-1) > cantidadNumero){
cantidadNumero2=counter;
} }
counter=0;
} }
if (cantidadNumero==3 && (cantidadNumero2-1)==2){
return true;
}else {
return false; return false;
} }
}
//Cuatro cartas iguales (mismo valor). //Cuatro cartas iguales (mismo valor).
public boolean poker(List<Carta> cartas) { public boolean poker(List<Carta> cartas) {
List<Integer> valores = new ArrayList<>(); List<Integer> valores = new ArrayList<>();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment