Create a class ExpTransformer implementing the Transformer interface whose transform() method takes in the argument x and replaces it with 2x.
(eg: if t is an instance of ExpTransformer and arr is the array [2.0, 3.0, 4.0], then after applyTransformation(arr, t), arr contains the elements [4.0, 8.0, 16.0].)