6 kyu

Calculate the area of a regular n sides polygon inside a circle of radius r

981 of 4,601Chrono79
Description
Loading description...
Mathematics
Geometry
Fundamentals
View
AllIssues9Questions1Suggestions7Show Resolved
  • Please sign in or sign up to leave a comment.
  • wb4 Avatar

    This kata is an opportunity to raise awareness for the constant Tau, symbolized by T, which is equal to 2π. It's a nice constant. There are T radians in a circle. See? Very elegant.

    It might already be handily defined right alongside PI in your programming language of choice. It is in Rust, for example, though sadly almost all the Rust solutions are using 2.0 * PI instead :(

  • MikChan Avatar

    I believe that katas with "round a float to n'th digit" requirement and then comapring floats by exact values should not pass the review. Comparing floats by exact value, excluding some very specific cases, is always a huge no-no in software engineering, and it's actually a shame I see this nonsense too often on this website. I wish there was not only an advice not to do that, but an actual rule that would forbid such katas from being approved, unless changed in a way it works with floating numbers in a correct way.

  • mauro-1 Avatar

    Don't round float results, use approximate equality tests.

    https://docs.codewars.com/authoring/recipes/floating-point

  • porkfreezer Avatar

    This comment has been hidden.

  • Oleg.MR Avatar

    Can't complete 4th random test, Java.

  • laurelis24 Avatar

    This comment has been hidden.

  • ejini战神 Avatar

    Description should be language-agnostic

  • TigrisDK Avatar

    I got a problem with a random test, the exercise, says i should round to 3 decimals, which i do, and pass the basic tests, but a random test #5, with the parameters radius = 2.3921963039767293 sides = 17 Expected: 17.571999999999999d But was: 17.571000000000002d

    So my guess is that random test #5 dosn't have the 3 decimals.

  • daz4126 Avatar

    The tests don't work for this ... anything passes them and there are a few incorrect solutions already submitted. I'm pretty certain the tests should say assertEqual instead of just assert

  • phillip-alter Avatar

    Not a huge fan of math katas but I enjoyed this one because it was straightforward and well-described. Thanks.

  • livxy Avatar

    I like the math katas' on codewars like these, really help brush up my mathematic skills in a very interesting and thinking out-of-the box way!

  • nikoanzai Avatar

    more like a 7 kyu or 8 kyu kata.

  • domin-sweet Avatar

    Created a Golang translation: here

  • fYOBc5 Avatar

    I think for dart have to mention PI equals to 3.14159265359. I tried just 3.14 didn't work, then 3.14159 same didn't work.

  • akar-0 Avatar

    Python, JS, Java, C++, and maybe others: float values for radius are only tested in fixed tests (just once in JS, Python and Java), random tests only give integer values (or double with no decimal part in typed languages). It doesn't make sense.

  • GokulGHV Avatar

    My code is able to pass all the random tests when I press attempt but it fails the first test case of the basic test (sample test case).

    It is shows the error as follows:

    Expected: 11.691 Received: 11.691 for area_of_polygon_inside_circle(3, 3)

    My program's output and the expected output is the same but this error pops up for no reason.

    I guesss there is some bug or some issue with the test-case checking.

  • AnikNath114911 Avatar

    This is a very mathematical kata.

  • zeyzeyzey Avatar

    There is a rounding up problem in python.

  • Manigoldo Avatar

    This comment has been hidden.

  • SunMaster Avatar

    Failing on randoms. The issue with that is there's no indication which answer is expected, it only says "The expression (area_of_polygon_inside_circle(r, n)) == (sol(r, n)) is false."

  • JohanWiltink Avatar
  • wneumann Avatar

    For the Swift version of this Kata (and pretty much all katas that look for floating point results), rather than specifying that the result be rounded to three decimal places (which can still lead to weird floating point equality corner cases), the tests should instead XCTAssertEqualWithAccuracy(::accuracy:) for Swift 3.1 and XCTAssertEqual(::accuracy:) for Swift 4.

  • imprezobus Avatar

    I've tried doing this in Java but I fail on random tests.

    I've searched for most precise methods of doing this and avoided common imprecise rounding methods. I've analysed the values and calculated the areas by hand and I stand with the results my code produces.

    Could you please take a look at the Java TC's translation?

  • Srijal97 Avatar

    I can't seem to pass the random tests, even though the values returned by my function are exactly as expected. Here are some examples:

    Expected: equal to 601.829
    Actual: 601.829

    Expected: equal to 991.915
    Actual: 991.915

    Expected: equal to 488.84
    Actual: 488.84

    What could be the issue?

  • justinddaniel Avatar

    I discovered something weird with Ruby: it will compute (1/2) * 3 and return 0. It has trouble with any fraction expressed as (a/b) where a and b are integers. Why is this?

  • Chrono79 Avatar

    Added java translation.

  • sv90 Avatar

    This comment has been hidden.

  • Chrono79 Avatar

    Added CoffeeScript and TypeScript too.

  • CodeVortex Avatar

    Consider renaming all references of circle with circumcircle (or circumscribed circle). This is the proper name for the unique circle that touches every vertex in the polygon, and in which we are interested. Other than that I enjoyed this kata! :)

  • Chrono79 Avatar

    Added Crystal translation too.

  • Chrono79 Avatar

    Added Swift translation, let me know if something is not ok with it.

  • donaldsebleung Avatar

    Objective-C Translation Kumited - please carefully review and approve :D

  • MrZizoScream Avatar

    Congratulations My Friend For the First Kata .... Waiting For Mooooooooooooooore ... Challanging Yet easy to translate hahhahahaha ... wish you the best bro ..

  • Blind4Basics Avatar

    Should be 7 kyu... :o

  • raulbc777 Avatar

    Good kata!

  • Blauelf Avatar

    Please add the word "regular" to the polygon. Imagine a non-regular polygon, for example a rectangle of 6x8 in a circle of radius 5. It has area 48, but you expect value 50 from a square.

  • MrZizoScream Avatar

    C++ Translation

    Review and Approve ...

    Diego Thanks For This honor Translating my hero Katas .. regards

  • accord75 Avatar

    For PHP, basic tests, but random tests fail.

    Random test #29 : radius = 22, sides = 9 Failed asserting that 1399.991 matches expected 1.0.

    Could you please look into it?

  • iNont Avatar

    C# Translation Kumited - please carefully review and approve :D

  • raulbc777 Avatar

    Congrats for your first kata. In my opinion it's 7 kyu.