• 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
lwalker Avatar
Name:Unknown
Clan:Strath Haven High School
Member Since:Mar 2017
Last Seen:Jun 2017
Profiles:
    Following:73
    Followers:73
    Allies:73
    View Profile Badges
    • Stats
    • Kata
    • Collections
    • Kumite
    • Social
    • Discourse
    • Conversations (16)
    • Replies
    • Authored
    • Needs Resolution
    • Custom User Avatar
      • yanoolthecool
      • commented on "Convert string to camel case" java solution
      • 9 months ago

      simple, and straightforward

    • Custom User Avatar
      • Ledity
      • commented on "Convert string to camel case" java solution
      • 16 months ago

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

    • Custom User Avatar
      • ejini战神
      • resolved an issue on "Regexp Basics - is it a vowel?" kata
      • 2 years ago

      Not a kata issue. Your solution fails for cases like ae or Au. Re-read the description

    • Custom User Avatar
      • Dikong
      • commented on "Convert string to camel case" java solution
      • 3 years ago

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

    • Custom User Avatar
      • juntch
      • commented on "Convert string to camel case" java solution
      • 3 years ago

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

    • Custom User Avatar
      • java_massacre
      • commented on "Convert string to camel case" java solution
      • 3 years ago

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

    • Custom User Avatar
      • Jud4spriest
      • commented on "Convert string to camel case" java solution
      • 4 years ago

      nice solution bro! mine was the worse i've saw. hahahahahha

    • Custom User Avatar
      • Naix1337
      • commented on "Simple Encryption #1 - Alternating Split" java solution
      • 5 years ago

      For j+=1 just write j++

      Your solution to also include the last character if the string has uneven length seems like a big hack and should be avoided. Also substring is waaaay slower than charAt('last index')

    • Custom User Avatar
      • Naix1337
      • commented on "Simple Encryption #1 - Alternating Split" java solution
      • 5 years ago

      Small suggestion:

      for(int j=1; j<out.length(); j+=2) temp+=out.charAt(j);

      for(int j=0; j<out.length(); j+=2) temp+=out.charAt(j);

      This might look friendly, but it is unecessary and might lead to caching problems. You cant have the complete String in memory so you should go once from the beginning till the end. And use modulo to determine even and uneven.

    • Custom User Avatar
      • Topoyiyo
      • commented on "Convert string to camel case" java solution
      • 5 years ago

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

    • Custom User Avatar
      • diegopereyra977
      • commented on "Simple Encryption #1 - Alternating Split" java solution
      • 6 years ago

      most simple

    • Custom User Avatar
      • jandelahoz
      • commented on "Convert string to camel case" java solution
      • 7 years ago

      Good Solution, but if the first word have more uppercase letter el resulte is diferente to camelCase. ie: "thE-stealth-warrior" not return "theStealthSarrior"

    • Custom User Avatar
      • adonnen
      • commented on "Resistor Color Codes" java solution
      • 8 years ago

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

    • Custom User Avatar
      • lwalker
      • created an issue for "Regexp Basics - is it a vowel?" kata
      • 8 years ago

      I'm passing the random tests, but the example and fixed tests both return runtime errors. Even if I just make the function return true, is still gives errors. Has anyone had similar problems? I'm using Java.

    • Custom User Avatar
      • lwalker
      • commented on "Simple Encryption #1 - Alternating Split" kata
      • 8 years ago

      Wow, a lot of these solutions are unecessarily complicated. You don't need to use StringBuilder at all.

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

    Confirm

    • Cancel
    • Confirm

    Collect: undefined

    Loading collection data...