about | help | code help+videos | done | prefs |
Write a method that accepts two arrays of integers and an array of operations. The operations could include "+", "-", or "*". Return an array of the results of performing the operations on the corresponding values in the same indices of the number arrays. Look at the test data for examples. test2021_02_25_APP1SLHL_mathOperations([20], ["*"], [5]) → [100] test2021_02_25_APP1SLHL_mathOperations([20], ["+"], [5]) → [25] test2021_02_25_APP1SLHL_mathOperations([20], ["-"], [5]) → [15] ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 220
Copyright Nick Parlante 2017 - privacy