Skip to content

Instantly share code, notes, and snippets.

@krowter
Last active March 10, 2020 08:47
Show Gist options
  • Save krowter/4fc9765e5c8e379447f17b0b44f671ae to your computer and use it in GitHub Desktop.
Save krowter/4fc9765e5c8e379447f17b0b44f671ae to your computer and use it in GitHub Desktop.
...
do {
var hasil = [];
var mulai = max;
//mulai isi array dengan bilangan pertama
do {
//method unsift mengisi element dari bagian depan array
hasil.unshift(mulai);
//kurangi nilai "mulai" dengan 1
mulai = mulai - 1;
//ulangi terus sampai solusi ketemu atau nilai dari "mulai" sudah 0
} while (jumlah(hasil) !== N && mulai > 0);
max = max - 1;
} while (jumlah(hasil) !== N);
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment