* q1: Write a public static method named q1 that takes an ArrayList of Doubles as a parameter and returns an ArrayList of Doubles. The returned ArrayList will contain only the values from the input ArrayList that have a natural logarithm within 2.0 of 1.67, i.e., the target value of the natural logarithm is 1.67 and the allowed variance from this target is 2.0.
* q3: Write a public static method named q3 that takes two ints as parameters and returns a boolean. The output should be the evaluation of the boolean expression: The first parameter is equal to 1 or the second parameter is less than 2.
* q5: Write a public static method named q5 that takes two ints as parameters representing a 2D point (The first parameter is the x-value, the second is the y-value) and returns a double. The return value shall be the Euclidean distance between the input point and the point (11,3).
* See https://docs.oracle.com/javase/8/docs/api/java/lang/Math.html#method.summary for a complete list of methods contained in the Math class. You may call any of these methods in your method.