Hackerrank Ruby - Methods - Variable Arguments Solution

Hackerrank Ruby - Methods - Variable Arguments Solution

.MathJax_SVG_Display {text-align: center; margin: 1em 0em; position: relative; display: block!important; text-indent: 0; max-width: none; max-height: none; min-width: 0; min-height: 0; width: 100%} .MathJax_SVG .MJX-monospace {font-family: monospace} .MathJax_SVG .MJX-sans-serif {font-family: sans-serif} .MathJax_SVG {display: inline; font-style: normal; font-weight: normal; line-height: normal; font-size: 100%; font-size-adjust: none; text-indent: 0; text-align: left; text-transform: none; letter-spacing: normal; word-spacing: normal; word-wrap: normal; white-space: nowrap; float: none; direction: ltr; max-width: none; max-height: none; min-width: 0; min-height: 0; border: 0; padding: 0; margin: 0} .MathJax_SVG * {transition: none; -webkit-transition: none; -moz-transition: none; -ms-transition: none; -o-transition: none} .mjx-svg-href {fill: blue; stroke: blue}

In our previous challenges, we explored some ways to pass arguments to our methods; however, they were limited in terms of the number of arguments we can pass to them. Using default parameters allows us to lower the number of arguments in some cases, but it's not helpful in situations where we need to pass a variable (and potentially very large) number of arguments.

Consider a method that computes the sum of numbers. Obviously, you wouldn't want to write different methods accounting for some variable number of arguments (e.g.: summing two numbers, three numbers, four numbers, etc.). This is where Ruby's * comes into play. Take a look at the following code:       def sum(first, *rest)    rest.reduce(first) { |o, x| o + x }end > sum(1) # first = 1, rest = []1> sum(1, 2) # first = 1, rest = [2]3> sum(1, 2, 3) # first = 1, rest = [2, 3]6

Prepending an asterisk (*), or splat, to a parameter assigns all of the values starting from that position in the method call to an array named  inside the method. In this case, our method has at least one required parameter named , and then any subsequent values are assigned as an array to .

Write a method named full_name that generates the full names of people given their first name, followed by some variable number of middle names, followed by their last name.

Sample Input 0

> full_name('Harsha', 'Bhogle')

Sample Output 0

"Harsha Bhogle"

Sample Input 1

> full_name('Pradeep', 'Suresh', 'Satyanarayana')

Sample Output 1

"Pradeep Suresh Satayanarayana"

Sample Input 2

> full_name('Horc', 'G.', 'M.', 'Moon')

Sample Output 2

"Horc G. M. Moon"

Solution in ruby

Approach 1.

# Your code here
def full_name (*names)
    names.join(" ")
end

Approach 2.

def full_name(first, *last)
    last.inject(first){|full, name| full + " #{name}"}
end

Approach 3.

# Your code here
def full_name(first, *rest)
    rest.reduce(first) {|a, b| "#{a} #{b}"}
end

Subscribe to The Poor Coder | Algorithm Solutions

Don’t miss out on the latest issues. Sign up now to get access to the library of members-only issues.
[email protected]
Subscribe