Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

김수경/JavaScript/InfiniteDataStructure: Difference between revisions

From ZeroWiki
(Repair batch-0004 pages from live compare)
(Repair MoniWiki formatting after migration)
 
Line 1: Line 1:
Implementing Infinite Data Structure in JavaScript.
Implementing Infinite Data Structure in [[JavaScript]].


== 11/26 ==
== 11/26 ==

Latest revision as of 00:34, 29 March 2026

Implementing Infinite Data Structure in JavaScript.

11/26

naturalSequence().filter(limit(n)).reduce(sum)
sum(a, b) := a + b
limit(n)(a) := (n >= a)
.reduce(f(a, b)) := f(seq[:last-1].reduce(f), seq[last])
filter(f(a)) := for each a in seq, sequence of a which f(a) is true.