[Community Puzzle] Nature of triangles

https://www.codingame.com/training/easy/nature-of-triangles

Send your feedback or ask for help here!

Created by @nicola,validated by @eklore,@murrayr and @Faibbus.
If you have any issues, feel free to ping them.

For the first test, I get the following failure:

Found:
ABC is a scalene and an obtuse in B(176\2\1) triangle…
Expected:
ABC is a scalene and an obtuse in A (176\-62\-80) triangle.

All angles of a triangle add up to 180 degrees which my calculations match(minus rounding). I admit my geometry is rusty, how can -62 and -80 degrees fit with a triangle with a 176 degree angle?

Also, when displaying the first testcase, it shows expected results of

ABC is a scalene and an obtuse in A (176°) triangle.

not
ABC is a scalene and an obtuse in A (176\-62\-80) triangle.

For the first test, angles are 176.269° (176°) in A, 2.419° (2°) in B, 1.312° (1°) in C … you probably did a mistake somewhere in your code.
On bad output, \-62\-80 is displayed instead of ° (weird but…it is the same, and it does not match -62° and -80° angles).

2 Likes

I see, the ‘°’ character can be displayed in the console output but not the failure message output…

@Mehdi_Moulati :man_facepalming: You’re off the mark… I didn’t ask questions, I was answering someone… who understood…and it was 10 months ago :rofl:.

3 Likes