diff --git a/src/firstCommit/addTwoNumbers_myName.m b/src/firstCommit/addTwoNumbers_myName.m index 275ebdab9165e1aa5e6e23cde9a70e13b0d74592..522f77b56bc1583d12e408c50cc4768dba8b0a92 100644 --- a/src/firstCommit/addTwoNumbers_myName.m +++ b/src/firstCommit/addTwoNumbers_myName.m @@ -1,5 +1,5 @@ function c = addTwoNumbers_myName(a, b) % addTwoNumbers(a, b) returns the sum of a and b -c = a + b; +c = a - b; end diff --git a/src/secondCommit/multiplyTwoNumbers_myName.m b/src/secondCommit/multiplyTwoNumbers_myName.m index dc1653b7bceeb4b45a6e31a851fff1cdac330219..c94f274afbd7dc8a9f4d1d688161e67d9cd0c222 100644 --- a/src/secondCommit/multiplyTwoNumbers_myName.m +++ b/src/secondCommit/multiplyTwoNumbers_myName.m @@ -1,5 +1,5 @@ function c = multiplyTwoNumbers_myName(a, b) % multiplyTwoNumbers(a, b) returns the product of a and b -c = a * b; +c = a / b; end