-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadivinar.m
96 lines (80 loc) · 2.32 KB
/
adivinar.m
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
function mat=adivinar(mat)
col=zeros(1,9);
fila=zeros(1,9);
for i=1:9
AA=mat(:,i);
col(i)=numel(AA(AA==0));
AA=mat(i,:);
fila(i)=numel(AA(AA==0));
end
col(col==0)=10;
fila(fila==0)=10;
valor=1; %direccion fila = 1
if min(fila)>min(col)
valor=2; %direccion fila = 2
end
aux=mat;
switch valor
case 1
i=1; ok=0;
while i<10 && ok~=1;
[~,orden]=sort(fila);
AA=aux(orden(i),:);
posiciones=find(AA==0);
valores=zeros(size(posiciones));
cont=1;
for j=1:9
if numel(AA(AA==j))==0
valores(cont)=j;
cont=cont+1;
end
end
k=1;
while k<length(valores)+1 && ok~=1 && length(valores)==length(posiciones)
aux(orden(i),posiciones(1))=valores(k);
aux=resol1(aux);
nulos=numel(aux(aux==0));
fallos=[sum(aux) sum(aux')];
fallos=numel(fallos(fallos==45));
if nulos~=0 || fallos~=18
aux=mat;
k=k+1;
else
ok=1;
end
end
i=i+1;
end
case 2
i=1; ok=0;
while i<10 && ok~=1;
[~,orden]=sort(col);
AA=aux(:,orden(i));
posiciones=find(AA==0);
valores=zeros(size(posiciones));
cont=1;
for j=1:9
if numel(AA(AA==j))==0
valores(cont)=j;
cont=cont+1;
end
end
k=1;
while k<length(valores)+1 && ok~=1 && length(valores)==length(posiciones)
aux(posiciones(1),orden(i))=valores(k);
aux=resol1(aux);
nulos=numel(aux(aux==0));
fallos=[sum(aux) sum(aux')];
fallos=numel(fallos(fallos==45));
if nulos~=0 || fallos~=18
aux=mat;
k=k+1;
else
ok=1;
end
end
i=i+1;
end
end
mat=aux;
end