I had an AI optimize my C program that finds the numbers that pass the first criterion of the test mentioned in the numbers game blog post of April 26 (in a specified range). I tested the various versions repeatedly and compared the output of passers (numbers passing the 1st criterion) with files of bona… Continue reading A computation of test passers to 40 billion
Month: April 2025
Python script to test random numbers
I had an AI write a Python program to test random numbers in the numbers game from my last post. On the command line, one gives two numerical arguments: the number of iterations and the upper limit on the numbers. So python3 vietatest.py 20 1000000000000 will run 20 tests on random numbers in the range… Continue reading Python script to test random numbers
Numbers game Python code for Beta testers
I’m releasing beta code for a numbers game written in Python. The code was written by the Chatbot ChatGPT. Update: I’ve added a C language program after the Python program. The program interactively solicits the user to enter non-negative integers. Numbers with a hundred or more digits are acceptable. I don’t know how to run… Continue reading Numbers game Python code for Beta testers