• 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
Javalust work Avatar
Name:Lykov Ivan
Clan:Unknown
Member Since:Nov 2022
Last Seen:Aug 2024
Profiles:
    Following:0
    Followers:0
    Allies:0
    View Profile Badges
    • Stats
    • Kata
    • Collections
    • Kumite
    • Social
    • Discourse
    • Conversations (10)
    • Replies
    • Authored
    • Needs Resolution
    • Custom User Avatar
      • ejini战神
      • resolved a question on "Stop gninnipS My sdroW!" kata
      • 2 years ago

      You are concatenating the result of previous computations. Also, your final output have trailing spaces. Seems like you've solved it though, closing!

    • Custom User Avatar
      • B1ts
      • resolved an issue on "Array.diff" kata
      • 2 years ago

      Who knows? We're not mindreaders.

      Not a valid kata issue. See https://docs.codewars.com/training/troubleshooting for tips.

    • Custom User Avatar
      • B1ts
      • resolved an issue on "Array.diff" kata
      • 2 years ago

      Documentation suggests that package slices is only available since version 1.21, but only 1.20 is available at the moment. So, don't import unsupported packages.

    • Custom User Avatar
      • Javalust work
      • created an issue for "Array.diff" kata
      • 2 years ago

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

    • Custom User Avatar
      • B1ts
      • commented on "Isograms" kata
      • 2 years ago

      You're not returning anything, that's why. Check out https://docs.codewars.com/training/training-example

    • Custom User Avatar
      • B1ts
      • resolved an issue on "Isograms" kata
      • 2 years ago

      Your code not working is not a kata issue. Please check https://docs.codewars.com/training/troubleshooting for some tips.

      If you want to post code, use code formatting: https://docs.codewars.com/references/markdown/#displaying-code

    • Custom User Avatar
      • o2001
      • commented on "Isograms" kata
      • 2 years ago

      The issue lies with your if-check. Can't get into more detail otherwise you wouldn't be able to see this comment if it's marked as a spoiler. But, essentially, you're not applying the case-insensitivity on the original string. You're doing it on the wrong parts. Think about how and why your solution would mess up with strings containing uppercase chars like HOOP or hOOp. Are you searching for a version of that char that doesn't exist? That's about as many hints I can give without spoiling.

    • Custom User Avatar
      • Javalust work
      • created an issue for "Isograms" kata
      • 2 years ago

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

    • Custom User Avatar
      • Javalust work
      • created an issue for "Stop gninnipS My sdroW!" kata
      • 2 years ago

      expected:<emocleW[]> but was:<emocleW[ ]>
      I don't have ideas what's this problem is about?

      public class SpinWords {

      public String spinWords(String sentence) {
          String[] str = sentence.split(" ");
          String result = "";
          for(int i = 0; i<str.length;i++){
              if(str[i].length()>=5){
                  result+=new StringBuilder(str[i]).reverse().toString()+" ";
              }
              else{
                  result+=str[i]+" ";
              }
          }
          return result.trim()+" ";
      }
      

      }

    • Custom User Avatar
      • Javalust work
      • created a question for "Stop gninnipS My sdroW!" kata
      • 2 years ago

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

    • © 2025 Codewars
    • About
    • API
    • Blog
    • Privacy
    • Terms
    • Code of Conduct
    • Contact

    Confirm

    • Cancel
    • Confirm

    Collect: undefined

    Loading collection data...