Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Nikola de Lange
git.practice
Commits
3ffd2dfe
Commit
3ffd2dfe
authored
Jan 19, 2017
by
Miguel Oliveira
Browse files
Merge branch 'master' of
https://git-r3lab.uni.lu/git-training/practice
parents
a1a34cee
21d8a702
Changes
4
Hide whitespace changes
Inline
Side-by-side
firstCommit/addTwoNumbers_Lemmer.m
0 → 100644
View file @
3ffd2dfe
function
c
=
addTwoNumbers
(
a
,
b
)
% addTwoNumbers(a, b) returns the sum of a and b
c
=
a
+
b
;
end
firstCommit/addTwoNumbers_StefaniaMagnusdottir.m
0 → 100644
View file @
3ffd2dfe
function
c
=
addTwoNumbers_StefaniaMagnusdottir
(
a
,
b
)
% addTwoNumbers(a, b) returns the sum of a and b
c
=
a
+
b
;
end
firstCommit/addTwoNumbers_hulda.m
0 → 100644
View file @
3ffd2dfe
function
c
=
addTwoNumbers_hulda
(
a
,
b
)
% addTwoNumbers(a, b) returns the sum of a and b
c
=
a
+
b
;
end
secondCommit/multiplyTwoNumbers_StefaniaMagnusdottir.m
0 → 100644
View file @
3ffd2dfe
function
c
=
multiplyTwoNumbers_StefaniaMagnusdottir
(
a
,
b
)
% multiplyTwoNumbers(a, b) returns the product of a and b
c
=
a
*
b
;
end
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment