螺旋

id
2512314155324
title
螺旋
date
12/31/2025
text
class 螺旋 {
    constructor(seed) {
        this.current = seed;
        this.depth = 0;
        this.context = [];
    }

    iterate() {
        this.context.push(this.current);
        this.current = transform(this.current, this.context);
        this.depth++;
        return this;
    }
}
SHA-256
螺旋