Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

11 řádky
201 B

"use strict"
var createTree = require("../rbtree.js")
var t = createTree()
var s = Date.now()
for(var i=0; i<100000; ++i) {
t = t.insert(Math.random(), Math.random())
}
console.log(Date.now() - s)