vuyisile.github.io

View on GitHub
15 November 2017

Solution To Smallest Common Multiple

by {"name"=>"Vuyisile Weni"}

Solution to Smallest Common Multiple.

Just a reminder, lastime I had a tough time solving this problem, because finding a common multiple between the minimum number and the maximum number was difficult considering I had to consider the fact that the multiple should also be common to all sequential numbers in the range between these parameters. This is continuing from where I left.

Re-checking the rules of this problem.

My approach

Firstly, I created a function titled findSmallestMultiple that accepts an array as an argument. Knowing the given the rule that the range will be in an array of two numbers that will not necessarily be in numerical order, I created two variables on called min that contains the lowest number in the array and the other called max contains the hightest number in the array, then I created a new variable called currentMultiple which contained max.

From there I created a function titled checkIfMultiple that accepted three arguments, first paramtere being cm for currentMultiple, second being min for minimum value and last being max for maximum value. Within the function I created a for Loop that took the min variable as a beggining point and incremented it by one until it reaches the same number as the max value. I had a condition in that for loop that checks if the currentMultiple is divisible by i which is equal to min and returns false if the remainder is not 0, otherwise returns true.

There after, outside the checkIfMultiple function but inside findSmallestMultiple, I created a while loop that checks the condition of checkIfMultiple if the function’s result is not true then currentMultiple should increment by max.

tags: