• Sign Up
    Time to claim your honor
  • Training
  • Practice
    Complete challenging Kata to earn honor and ranks. Re-train to hone technique
  • Freestyle Sparring
    Take turns remixing and refactoring others code through Kumite
  • Community
  • Leaderboards
    Achieve honor and move up the global leaderboards
  • Chat
    Join our Discord server and chat with your fellow code warriors
  • Discussions
    View our Github Discussions board to discuss general Codewars topics
  • About
  • Docs
    Learn about all of the different aspects of Codewars
  • Blog
    Read the latest news from Codewars and the community
  • Log In
  • Sign Up
RandomUser01 Avatar
Name:Unknown
Clan:Also Unknown
Member Since:Nov 2022
Last Seen:Jun 2025
Profiles:
    Following:4
    Followers:3
    Allies:2
    View Profile Badges
    • Stats
    • Kata
    • Collections
    • Kumite
    • Social
    • Discourse
    • Conversations (28)
    • Replies
    • Authored
    • Needs Resolution
    • Custom User Avatar
      • dfhwze
      • commented on "Geometry Basics: Circle Circumference in 2D" kata
      • 7 months ago

      Yes, this type of floating point verification is asking for such issues:

      Test.assertEquals(+actual.toFixed(6), +expected.toFixed(6));

      Instead, a tolerance of 1e-6 should be used.

    • Custom User Avatar
      • rowcased
      • commented on "Geometry Basics: Circle Circumference in 2D" kata
      • 7 months ago

      isn't this possibly an issue?

    • Custom User Avatar
      • RandomUser01
      • commented on "Geometry Basics: Circle Circumference in 2D" kata
      • 7 months ago

      This comment is hidden because it contains spoiler information about the solution

    • Custom User Avatar
      • RandomUser01
      • commented on "Find the force of gravity between two objects" kata
      • 8 months ago

      This is like a 5-6 kyu just to understand it...

    • Custom User Avatar
      • RandomUser01
      • commented on "Wilson primes" python solution
      • 8 months ago

      Geezus

    • Custom User Avatar
      • rowcased
      • commented on "Geometry Basics: Circle Area in 2D" kata
      • 8 months ago

      It's not so much about exactly how many decimals, it's about whether it is a valid solution or not. It simply doesn't seem okay to allow for any solution to sometimes pass a kata.

    • Custom User Avatar
      • RandomUser01
      • commented on "Geometry Basics: Circle Area in 2D" kata
      • 8 months ago

      This comment is hidden because it contains spoiler information about the solution

    • Custom User Avatar
      • Just4FunCoder
      • created an issue for "[BF] Advanced If/Else" kata
      • 8 months ago

      This comment is hidden because it contains spoiler information about the solution

    • Custom User Avatar
      • RandomUser01
      • resolved an issue on "[BF] Advanced If/Else" kata
      • 8 months ago

      Oops sorry, I didn't notice I made the same mistake twice in one line... SHOULD be fixed now...

    • Custom User Avatar
      • Mednoob
      • created an issue for "[BF] Advanced If/Else" kata
      • 8 months ago
      memory[memIndex] == 0 ? leftBrackets.pop() : i = leftBrackets[0]
      

      i = leftBrackets[0] is wrong because, again, the latest bracket is the last item of the array.

    • Custom User Avatar
      • RandomUser01
      • resolved an issue on "[BF] Advanced If/Else" kata
      • 8 months ago

      I believe it should work now. Thanks for noticing that!

    • Custom User Avatar
      • Mednoob
      • created an issue for "[BF] Advanced If/Else" kata
      • 8 months ago

      In the memory cells usage checks:

      memory[memIndex] == 0 ? leftBrackets.shift() : i = leftBrackets[0]
      if (leftBrackets.length == 0) {skip = false}
      

      The first line is wrong as the latest bracket is currently on the last index. The second line is also wrong as when the code is something like this: +[-[-]>+<]>. this will result in 0 instead of 1 since the state skip from inner bracket still holds.

    • Custom User Avatar
      • RandomUser01
      • resolved an issue on "[BF] Advanced If/Else" kata
      • 8 months ago

      It should be fixed. It wasn't accounting for inputs in the memory check.

    • Custom User Avatar
      • monadius
      • created an issue for "[BF] Advanced If/Else" kata
      • 8 months ago

      My solution uses 3 memory cells and passes all tests.

    • Custom User Avatar
      • RandomUser01
      • resolved an issue on "[BF] Advanced If/Else" kata
      • 8 months ago

      Fixed!

    • Loading more items...
    • © 2025 Codewars
    • About
    • API
    • Blog
    • Privacy
    • Terms
    • Code of Conduct
    • Contact

    Confirm

    • Cancel
    • Confirm

    Collect: undefined

    Loading collection data...