LCM algorithm with 3 numbers without the use of GCD
https://code.sololearn.com/c0j91WuFy82x/?ref=app I am having some slight issues with my current code where in some cases like: S = 11 M = 21 L = 30 This will make the first term 3 times as big as the actual LCM of the three values which makes it skip a lot of multiples. The first output for Test1 should be 2310 but it outputs 6930 instead. There are of course other cases like: A = 101 B = 202 C = 303 This should get the LCM of 606 but does 303*202 = 61206 instead. I am unsure as to how I should go about fixing it as I want it to be as it is right now as it is many times faster when it comes to higher values and I am going for efficiency and semi ease to read. So if you can find a fix using math that’d be great as everything so far has used only that. It’d also be fun to see someone try to make a more efficient algorithm for it with only 10 lines of code which is standard formatting, no one-liners and everything within functions counts as code and everything outside does not count towards the lines of code. Challenge: 1) Pass 4 values into a function which gets the shared multiples of all 3 values up to a limit. 2) Output all multiples Example: A=3, B = 5, C = 7 and limit = 100 this would output nothing as the first common multiple of all 3 is 105