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
int sum(ArrayList<Integer> nums)
Description: This method returns the sun of allelements in the list
void printReverse(ArrayList<String> strs)
Description: This method prints all elements in reverse order
double mean(ArrayList<Integer> nums)
Description: This method returns the arithmetic mean of allelements in the list
void printEvens(ArrayList<Integer> nums)
Description: This method prints out all even numbers
boolean isIdentical(ArrayList<Integer> nums1 , ArrayList<Integer> nums2)
Description: This method returns true if each element in the two ArrayLists is the same
boolean isIdentical(ArrayList<String> strs1 , ArrayList<String> str2)
Description: This method returns true if each element in the two ArrayLists is the same
**int largest(ArrayList<Integer> nums)
Description: This method returns the largest element in nums
|