Data update

This commit is contained in:
Ingy döt Net 2026-02-01 16:33:20 -08:00
parent 5150844a7d
commit 4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions

View file

@ -22,8 +22,8 @@ extension algorithmOp
}
else
{
if(randomGenerator.nextInt(counter) < n)
{ weak self[randomGenerator.nextInt(n)] := i }
if(Random.nextInt(counter) < n)
{ weak self[Random.nextInt(n)] := i }
};
^ weak self.Value
@ -32,7 +32,7 @@ extension algorithmOp
}
}
public program()
public Program()
{
var bin := Array.allocate(10).populate::(n => new Integer());
for(int trial := 0; trial < 10000; trial += 1)
@ -48,5 +48,5 @@ public program()
}
};
console.printLine(bin).readChar()
Console.printLine(bin).readChar()
}