Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 328 Bytes

README.md

File metadata and controls

13 lines (7 loc) · 328 Bytes

math computation sequences

Given the following function call:

  • math_sequences(2,5);

And the resulting output:

  • ["2+5=7", "2-5=-3", "2*5=10", "2/5=0.4"];

Create a function definition that achieves the output with the given input.

Solution Set