Data update

This commit is contained in:
Ingy döt Net 2024-03-06 22:25:12 -08:00
parent ed705008a8
commit 0df55f9f24
2196 changed files with 32999 additions and 3075 deletions

View file

@ -1,7 +1,7 @@
val .fun = f [.b, .b x .c + .a]
val .solvePell = f(.n) {
val .x = truncate .n ^/ 2
val .x = trunc .n ^/ 2
var .y, .z, .r = .x, 1, .x x 2
var .e1, .e2, .f1, .f2 = 1, 0, 0, 1

View file

@ -1,5 +1,5 @@
import "/big" for BigInt
import "/fmt" for Fmt
import "./big" for BigInt
import "./fmt" for Fmt
var solvePell = Fn.new { |n|
n = BigInt.new(n)