Hallo Borewa,
du hast vergessen, eine entscheidende Bedingung zu berücksichtigen, die die Laufzeit des Scripts drastisch verringern dürfte:
-der jeweils Linke Spaltenwert muss gleich oder größer sein. (Ausnahme Spalte 4)
Also statt
for(c=0;c<=270;c++){
for(b=0;b<=270;b++){
for(a=0;a<=270;a++){
besser:
for (c=0; c<=270; c++){
for (b=0; b<=c; b++){
for(a=0; a<=b; a++){
Grüße
Andreas
--
As Einstein once said during a Thanksgiving food fight, "It's all relatives."
As Einstein once said during a Thanksgiving food fight, "It's all relatives."