Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
/* Complete the template definition of the times()
function.
times() should take two parameters (a and b) of the same type and then
return a value of the same type that is equal a and b multiplied together.
There is one special case, if a is a string and b is an int.
In this case times() should return a value of the a parameter repeated
b times. */
//COMPLETE ME