• 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
laoris Avatar
Name:Unknown
Clan:Unknown
Member Since:Oct 2013
Last Seen:Jan 2025
Profiles:
Following:0
Followers:203
Allies:0
View Profile Badges
  • Stats
  • Kata
  • Collections
  • Kumite
  • Social
  • Discourse
  • Conversations
  • Replies (109)
  • Authored
  • Needs Resolution
  • Custom User Avatar
    • ejini战神
    • resolved a suggestion on "Showing X to Y of Z Products." kata
    • 2 years ago

    Raised as issue

  • Custom User Avatar
    • Beefy1
    • commented on "Linked Lists - Remove Duplicates" kata
    • 3 years ago

    For an unordered linked list, one can simply add the seen elements in an array/list and skip the nodes where data is already in the seen list.

  • Custom User Avatar
    • Javatlacati
    • commented on "Java Test Reference" doc
    • 5 years ago

    With JUnit 5 is possible and easy.

  • Custom User Avatar
    • wthit56
    • commented on "RangeSet" kata
    • 7 years ago

    Huge update to this kata!

  • Custom User Avatar
    • wthit56
    • commented on "RangeSet" kata
    • 7 years ago

    Huge update to this kata!

  • Custom User Avatar
    • Axure
    • commented on "Metaprogramming: Lisp-style Generic Functions" kata
    • 8 years ago

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

  • Custom User Avatar
    • JustDuck
    • commented on "Java Test Reference" doc
    • 8 years ago

    Your link is wrong and give a 404 error:
    http://junit-team.github.io/junit/javadoc/4.10/org/hamcrest/CoreMatchers.html

  • Custom User Avatar
    • dinglemouse
    • commented on "Grasshopper - Array Mean" kata
    • 9 years ago

    Take the pebble from my hand grasshopper.

  • Custom User Avatar
    • SleepingCode
    • commented on "Java Test Reference" doc
    • 10 years ago

    Why it is soo messed up respect to other languages?!?

  • Custom User Avatar
    • joehenriod
    • commented on "Grasshopper - Array Mean" kata
    • 10 years ago

    Ya I think it came from the David Carradine TV show "Kung Fu" and "Kung Fu the Legend Returns".

  • Custom User Avatar
    • JDeBolt
    • resolved a question on "Linked Lists - Remove Duplicates" kata
    • 10 years ago

    The problem states that the list will always be sorted in increasing order. Removing duplicates from an unordered list would be a great future Linked List problem to create, however.

  • Custom User Avatar
    • raulbc777
    • resolved an issue on "How Many Numbers?" kata
    • 10 years ago

    Thanks, laoris. Now it is fixed, I substitute the confussing 769 for 789. Thanks for your time.

  • Custom User Avatar
    • GiacomoSorbi
    • commented on "Grasshopper - Array Mean" kata
    • 10 years ago

    I took it for a famous quote about learning your kung fu, but who knows if I was right.

  • Custom User Avatar
    • liry
    • commented on "Java Test Reference" doc
    • 10 years ago

    Well, you can group tests into more test classes. To run it in embedded editor, you can wrap them into one suite, like:

    import org.junit.Test;
    import org.junit.runner.RunWith;
    import org.junit.runners.Suite;
    import static org.hamcrest.CoreMatchers.is;
    import static org.junit.Assert.assertThat;
    
    @RunWith(Suite.class)
    @Suite.SuiteClasses({
       MyTestSuite.MyTests.class,
       MyTestSuite.MyTests2.class
    })
    public class MyTestSuite {   
      
      public static class MyTests {
        @Test public void testIt() {
          assertThat(true, is(true));
        }
      }  
      
      public static class MyTests2 {
        @Test public void testIt2() {
          assertThat(false, is(false));
        }
      }
    }
    
  • Custom User Avatar
    • xehpuk
    • commented on "Guess the number!" kata
    • 10 years ago

    This will return integers in the range [0, 1000], so it's not better.

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

Confirm

  • Cancel
  • Confirm

Collect: undefined

Loading collection data...