Skip to content

Instantly share code, notes, and snippets.

View JonathanMonga's full-sized avatar
😎
Focus on Dart and Flutter.

Jomo JonathanMonga

😎
Focus on Dart and Flutter.
View GitHub Profile
@JonathanMonga
JonathanMonga / README.md
Created February 3, 2020 10:11 — forked from nikcub/README.md
Facebook PHP Source Code from August 2007
@JonathanMonga
JonathanMonga / randomNumbersWithFixedSum.js
Created March 9, 2023 14:11
Random integer numbers with fixed sum
function arraySum(a) {
return a.reduce((a, b) => a + b, 0)
}
function getRandomIntInclusive(min, max) {
const minCeil = Math.ceil(min)
const maxFloor = Math.floor(max)
return Math.floor(Math.random() * (maxFloor - minCeil + 1)) + minCeil
}