to pc
This commit is contained in:
@@ -3834,6 +3834,18 @@ class LevelSite extends AbstractSite$1 {
|
||||
}
|
||||
|
||||
onConstruct(args) {
|
||||
let a0 = -1;
|
||||
let a1 = 1;
|
||||
for(let i = 0; i < 10; i++)
|
||||
{
|
||||
let tmp = 3*a1-2*a0;
|
||||
console.log("reg", i+2, tmp);
|
||||
console.log("other", i+2, Math.pow(2, i+3)-3);
|
||||
a0=a1;
|
||||
a1=tmp;
|
||||
}
|
||||
|
||||
|
||||
this.levelCounter = Helper.nonNull(localStorage.getItem("levelCounter"), 1);
|
||||
return super.onConstruct(args);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user