↓ 1 callersMethodarrayMaxReturns a new array where entry i is the max of a[i] and b[i]. For example, if a = {1, -10, 3} and b = {0, 20, 5}, this function will return {1, 20, 5
lab02/src/adventure/MachineStage.java:108
↓ 1 callersMethodarrayMaxReturns a new array where entry i is the max of a[i] and b[i]. For example, if a = {1, -10, 3} and b = {0, 20, 5}, this function will return {1, 20, 5
lab03/src/adventure/MachineStage.java:108
↓ 1 callersMethodletterToNumReturns a map from every lower case letter to the number corresponding to that letter, where 'a' is 1, 'b' is 2, 'c' is 3, ..., 'z' is 26.
hw0b/src/MapExercises.java:8
↓ 1 callersMethodsquaresReturns a map from the integers in the list to their squares. For example, if the input list is [1, 3, 6, 7], the returned map goes from 1 to 1, 3 to
hw0b/src/MapExercises.java:15
↓ 1 callersMethodsumOfElementwiseMaxReturns the sum of the element-wise max of a and b. For example if a = {1, -10, 3} and b = {0, 20, 5}, the elementwise max is {1, 20, 5}, which sums t
lab02/src/adventure/MachineStage.java:140