|
Home
Site Map Useful Tools Graphing Calc Scientific Calculator |
ArrayList<Integer> factors(int num)
Description: This method returns an ArrayList populated with the factors of num
ArrayList<String> toCharList(String str)
Description: This method returns an ArrayList populated with the inidividual characters of str
ArrayList<Integer> digits(int num)
Description: This method returns an ArrayList populated with the digits of num
**
ArrayList<Integer> squareRoot(int num)
Description: This method returns an ArrayList that represents the reduced square root of the given number as follows. The first number represents the integer that is "un square rooted", followed by the non-perfect square factors of num.
|