5 lines
79 B
Matlab
5 lines
79 B
Matlab
for k = 1:1e10,
|
|
if isSelfDescribing(k),
|
|
printf('%i\n',k);
|
|
end
|
|
end;
|