Skip to content

Instantly share code, notes, and snippets.

View suspectpart's full-sized avatar
🐍
Python for Dummies - Out now!

Horst Schneider suspectpart

🐍
Python for Dummies - Out now!
  • Universität Heidelberg, Germany
  • Mannheim
View GitHub Profile
const { performance } = require('perf_hooks');
// LIZENZ: Gehört Horst Schneider
function Statistics(X) {
function Percentile(X, percent) {
this.value = function () {
const k = (X.length - 1) * percent;
const lower = Math.floor(k);