Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions projects/m1/030-maximum-integer/js/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@

const MAX = 100;
const MIN = 10;



function getRandomIntInclusive(min, max) {
const minCeiled = Math.ceil(min);
const maxFloored = Math.floor(max);
return Math.floor(Math.random() * (maxFloored - minCeiled + 1) + minCeiled); // The maximum is inclusive and the minimum is inclusive
}





function main() {
const {max,count}= getInput();
console.log(`The maximum value found was ${max}
The maximum value was updated ${count} times`)

}
main();




function getInput(array=[],obj={}){

if(array.length === 100){
return obj;
}
const {max = 0,count = 0} = obj;
const randomValue=getRandomIntInclusive(MIN,MAX);
let result = `${randomValue}`;
if(randomValue > max){
result +=' <== Update'
obj={
...obj,
max:randomValue,
count:count + 1
}
}
console.log(result);
array.push(randomValue);

return getInput(array,obj)
}