feat: 초기 프로젝트 설정 및 룰.md 파일 추가

This commit is contained in:
2025-07-28 09:53:31 +09:00
commit 09a4d38512
8165 changed files with 1021855 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
export default class ExponentiallyDecayingSample {
private RESCALE_INTERVAL;
private ALPHA;
private SIZE;
private _elements;
private _rescaleInterval;
private _alpha;
private _size;
private _landmark;
private _nextRescale;
private _mean;
constructor(options?: any);
update(value: any, timestamp?: any): void;
toSortedArray(): any;
toArray(): any;
_weight(age: any): number;
_priority(age: any): number;
_random(): number;
_rescale(now: any): void;
avg(now: any): number;
}