Hey guys, I'm going through the ruby koans, I'm on 151 and I just hit a brick wall.

Here is the koan:

# You need to write the triangle method in the file 'triangle.rb'
require 'triangle.rb'

class AboutTriangleProject2 < EdgeCase::Koan
  # The first assignment did not talk about how to handle errors.
  # Let's handle that part now.
  def test_illegal_triangles_throw_exceptions
    assert_raise(TriangleError) do triangle(0, 0, 0) end
    assert_raise(TriangleError) do triangle(3, 4, -5) end
    assert_raise(TriangleError) do triangle(1, 1, 3) end
    assert_raise(TriangleError) do triangle(2, 4, 2) end
 end
end

Then in triangle.rb we have:

def triangle(a, b, c)
  # WRITE THIS CODE
  if a==b && a==c
    return :equilateral
  end
  if (a==b && a!=c) || (a==c && a!=b) || (b==c && b!=a)
    return :isosceles
  end
  if a!=b && a!=c && b!=c
    return :scalene
  end
  if a==0 && b==0 && c==0
    raise new.TriangleError
  end



end

# Error class used in part 2.  No need to change this code.
class TriangleError < StandardError

end

I am beyond confused - any help at all would be much appreciated!

EDIT: To complete this koan, I need to put something in the TriangleError class - but I have no idea what

UPDATE: Here is what the koan karma thing is saying:

<TriangleError> exception expected but none was thrown.
link|improve this question

77% accept rate
What's the question here? – Daniel Vandersluis Sep 30 '10 at 19:44
Hi Daniel - updated my question to be a little more clear – Elliot Sep 30 '10 at 19:45
2  
Here's my minimal solution: gist.github.com/1126423 – danneu Aug 4 '11 at 22:11
feedback

13 Answers

up vote 9 down vote accepted
  1. A triangle should not have any sides of length 0. If it does, it's either a line segment or a point, depending on how many sides are 0.
  2. Negative length doesn't make sense.
  3. Any two sides of a triangle should add up to more than the third side.
  4. See 3, and focus on the "more".

You shouldn't need to change the TriangleError code, AFAICS. Looks like your syntax is just a little wacky. Try changing

raise new.TriangleError

to

raise TriangleError, "why the exception happened"

Also, you should be testing the values (and throwing exceptions) before you do anything with them. Move the exception stuff to the beginning of the function.

link|improve this answer
Hi cHao, thanks for your comment! I undestand when to raise the exceptions, I just dont understand what goes in the TriangleError class – Elliot Sep 30 '10 at 19:55
1  
Doesn't the code itself say "No need to change this code"? It should just work. – cHao Sep 30 '10 at 19:57
That was from part 1 of the class, in part 2 (this part) you do change the code – Elliot Sep 30 '10 at 20:00
You sure? People don't normally say "you don't need to change this" if they require you to change it. – cHao Sep 30 '10 at 20:05
I'm not 100% sure, I updated the question at the bottom. The koan won't let me proceed until I change something here. – Elliot Sep 30 '10 at 20:06
show 4 more comments
feedback

I like Cory's answer. But I wonder if there's any reason or anything to gain by having four tests, when you could have two:

raise TriangleError, "Sides must by numbers greater than zero" if (a <= 0) || (b <= 0) || (c <= 0)
raise TriangleError, "No two sides can add to be less than or equal to the other side" if (a+b <= c) || (a+c <= b) || (b+c <= a)
link|improve this answer
Should work fine. The only useful difference is the ability to specify different error messages for, say, zero vs negative lengths. Which i don't really see a need for either. People are just doing 4 checks cause there's explicitly 4 cases that the test is checking for, and they're coding to pass the test. – cHao Jun 3 '11 at 13:58
True, although greater than zero implies positive doesn't it? – Matt Connolly Jun 6 '11 at 0:01
1  
Yep. But there are 4 tests the code has to pass, and some people do a tunnel vision thing where they focus only on the current test, ignoring all the others. I imagine someone will argue it's more correct or something from a TDD perspective, but yeah. There's no reason not to condense it to 2 checks, IMO. – cHao Jun 6 '11 at 3:36
feedback

You definately do not update the TriangleError class - I am stuck on 152 myself. I think I need to use the pythag theorem here.

def triangle(a, b, c)
  # WRITE THIS CODE

  if a == 0 || b == 0 || c == 0
    raise TriangleError
  end

  # The sum of two sides should be less than the other side
  if((a+b < c) || (a+c < b) || (b+c < a))
    raise TriangleError
  end
  if a==b && b==c
    return :equilateral
  end
  if (a==b && a!=c) || (a==c && a!=b) || (b==c && b!=a)
    return :isosceles
  end
  if(a!=b && a!=c && b!=c)
    return :scalene
  end


end

# Error class used in part 2.  No need to change this code.
class TriangleError < StandardError
end
link|improve this answer
1  
What you've done is fine, but it's not the Pythagorean theorem ;) Pythagorean theorem states c^2 = a^2 + b^2 and is only valid for right-angled triangles. – Jordan Arsenault May 8 '11 at 6:00
1  
If you start by doing a, b, c = [a, b, c].sort you'll find the rest of your code becomes much simpler. ;) – davidchambers Oct 16 '11 at 22:44
feedback

Here is what I wrote and it all worked fine.

def triangle(a, b, c)
  # WRITE THIS CODE
  raise TriangleError, "Sides have to be greater than zero" if (a == 0) | (b == 0) | (c == 0)
  raise TriangleError, "Sides have to be a postive number" if (a < 0) | (b < 0) | (c < 0)
  raise TriangleError, "Two sides can never be less than the sum of one side" if ((a + b) < c) | ((a + c) < b) | ((b + c) < a)
  raise TriangleError, "Two sides can never be equal one side" if ((a + b) ==  c) | ((a + c) ==  b) | ((b + c) ==  a)
  return :equilateral if (a == b) & (a == c) & (b == c)
  return :isosceles if (a == b) | (a == c) | (b == c)
  return :scalene

end

# Error class used in part 2.  No need to change this code.
class TriangleError < StandardError
end
link|improve this answer
Any reason to do four tests when you can do this: ` raise TriangleError, "Sides must by numbers greater than zero" if (a <= 0) || (b <= 0) || (c <= 0) raise TriangleError, "No two sides can add to be less than or equal to the other side" if (a+b <= c) || (a+c <= b) || (b+c <= a) ` – Matt Connolly Apr 2 '11 at 14:44
Why are you using a single pipe (|)? – Andrew Grimm Aug 12 '11 at 3:38
feedback

You have to check that the new created triangle don't break the "Triangle inequality". You can ensure this by this little formula.

if !((a-b).abs < c && c < a + b)
  raise TriangleError
end

When you get the Error:

<TriangleError> exception expected but none was thrown.

Your code is probably throwing an exception while creating a regular triangle in this file. about_triangle_project.rb

link|improve this answer
You'd need to make sure a, b, and c are in a certain order, lest your test only cover 1/3 of the possible cases. – cHao Jul 10 '11 at 3:49
feedback

For the Koan about_triangle_project_2.rb there's no need to change TriangleError class. Insert this code before your triangle algorithm to pass all tests:

if ((a<=0 || b<=0 || c<=0))
    raise TriangleError
end

if ((a+b<=c) || (b+c<=a) || (a+c<=b))
    raise TriangleError
end
link|improve this answer
feedback

You don't need to modify the Exception. Something like this should work;

def triangle(*args)
  args.sort!
  raise TriangleError if args[0] + args[1] <= args[2] || args[0] <= 0
  [nil, :equilateral, :isosceles, :scalene][args.uniq.length]
end
link|improve this answer
feedback

This one did take some brain time. But here's my solution

def triangle(a, b, c)
  # WRITE THIS CODE
  raise TriangleError, "All sides must be positive number" if a <= 0 || b <= 0 || c <= 0
  raise TriangleError, "Impossible triangle" if ( a + b + c - ( 2 *  [a,b,c].max ) <= 0  )

  if(a == b && a == c)
      :equilateral
  elsif (a == b || b == c || a == c)
      :isosceles
  else
    :scalene
  end
end
link|improve this answer
feedback

I ended up with this code:

def triangle(a, b, c)
    raise TriangleError, "impossible triangle" if [a,b,c].min <= 0
    x, y, z = [a,b,c].sort
    raise TriangleError, "no two sides can be < than the third" if x + y <= z

    if a == b && b == c # && a == c # XXX: last check implied by previous 2
        :equilateral
    elsif a == b || b == c || c == a
        :isosceles
    else
        :scalene
    end
end 

I don't like the second condition/raise, but I'm unsure how to improve it further.

link|improve this answer
feedback

I wanted a method that parsed all arguments effectively instead of relying on the order given in the test assertions.

def triangle(a, b, c)
  # WRITE THIS CODE
  [a,b,c].permutation { |p| 
     if p[0] + p[1] <= p[2]
       raise TriangleError, "Two sides of a triangle must be greater than the remaining side."
     elsif p.count { |x| x <= 0} > 0
       raise TriangleError, "A triangle cannot have sides of zero or less length."
     end
  }

  if [a,b,c].uniq.count == 1
    return :equilateral
  elsif [a,b,c].uniq.count == 2
    return :isosceles
  elsif [a,b,c].uniq.count == 3
    return :scalene
  end
end

Hopefully this helps other realize there is more than one way to skin a cat.

link|improve this answer
feedback

You could also try to instance the exception with:

raise TriangleError.new("All sides must be greater than 0") if a * b * c <= 0
link|improve this answer
feedback

Here is my version... :-)

def triangle(a, b, c)

  if a <= 0 ||  b <= 0 || c <= 0
    raise TriangleError
  end 

  if a + b <= c  || a + c <= b ||  b + c <= a
    raise TriangleError
  end 

  return :equilateral if a == b && b == c
  return :isosceles   if a == b || a == c ||  b == c
  return :scalene     if a != b && a != c &&  b != c 

end
link|improve this answer
feedback

and what about a datatype validation... its not necesary but always useful...

raise TriangleError, "Insert numerical values only" unless (a && b && c).class.eql?(Fixnum) || (a && b && c).class.eql?(Float)
link|improve this answer
Not always useful. In a duck-typable language like Ruby, i generally care about an object's behavior, not its type. Consider that i might want to have a RangedNumber class that acts just like a Fixnum (you can add them, compare them, etc), but is clamped to a given range. Your type check would fail unnecessarily. – cHao Jul 8 '11 at 10:09
thanks for your comment, its totally true what your saying. – Orlando Del Aguila Jul 15 '11 at 7:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.