Question: Language Scala create an object named Algebra with a method named factor that takes an Int as a parameters and returns the prime factorization of
Language Scala
create an object named "Algebra" with a method named "factor" that takes an Int as a parameters and returns the prime factorization of that parameter as a List of Ints.
The following apply to this method: If the input is negative, 0, or 1, return an empty list. Do not include 1 in the output for any inputs. The order of the factors in the output List is undefined.
Example: lecture5.Algebra.factor(12) can return List(2,2,3), or List(2,3,2), or List(3,2,2).
UnitTesting:Inapackagenamed"tests"createaclass/file named"TestFactoring"asa test suite that thoroughly tests the factor method
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
