• 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
carafelix Avatar
Name:Unknown
Clan:The Odin Project
Member Since:Jun 2023
Last Seen:Jul 2025
Profiles:
Following:488
Followers:488
Allies:487
View Profile Badges
  • Stats
  • Kata
  • Collections
  • Kumite
  • Social
  • Discourse
  • Conversations
  • Replies (14)
  • Authored
  • Needs Resolution
  • Custom User Avatar
    • Casalone
    • commented on "Can you get the loop ?" javascript solution
    • 10 months ago

    The same thing happen to me. I think the same solution but give me timeout in the large lists.

    This solution is nice, I didn't know about WeakMap

  • Custom User Avatar
    • JohanWiltink
    • resolved a suggestion on "How many are smaller than me II?" kata
    • 13 months ago

    Maybe, maybe not. Maybe it depends on the language as well.

    But it's 3kyu now, and after 8 years reranking is probably not gonna happen.

    Closing.

  • Custom User Avatar
    • RileyHunter
    • commented on "Find the Longest Increasing or Decreasing Combination in an Array" kata
    • 13 months ago

    I agree with most of the suggested improvements here. Two things to clarify/change:

    1. When no solution exists it does not make sense to return a nested array - the outcome is an empty set of solutions [], not an empty set containing an empty solution [[]]. This one needs to be changed.
    2. When a single solution exists your improvement definitely is good - a set containing a single solution [[x,y,z]] makes much more sense than the un-nested solution itself [x,y,z]. However, this will invalidate all prior solutions; waiting on feedback from more experienced nerds on this one. I think a backwards compatibility shim would be appropriate.
  • Custom User Avatar
    • roobbs
    • commented on "Can you get the loop ?" kata
    • 13 months ago

    You shoul tell us the concept, because many of us are lost in this kata!

  • Custom User Avatar
    • trashy_incel
    • commented on "Conway's Game of Life - Unlimited Edition" kata
    • 2 years ago

    done

  • Custom User Avatar
    • Zed001
    • commented on "How many numbers III?" javascript solution
    • 2 years ago

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

  • Custom User Avatar
    • Chrono79
    • resolved an issue on "Detect Pangram" kata
    • 2 years ago

    English is the default language of the site, so there is no need to specify it. A-Z is enough.

  • Custom User Avatar
    • B1ts
    • commented on "Conway's Game of Life - Unlimited Edition" kata
    • 2 years ago

    @trashy_incel: since you already contributed to JS version, could you attempt to disable all other versions except node 18? Currently it throws syntax error for all others.

  • Custom User Avatar
    • NunoOliveira
    • resolved an issue on "Conway's Game of Life - Unlimited Edition" kata
    • 2 years ago

    Duplicate issue

  • Custom User Avatar
    • trashy_incel
    • resolved an issue on "Conway's Game of Life - Unlimited Edition" kata
    • 2 years ago

    done

  • Custom User Avatar
    • RileyHunter
    • commented on "Linked Lists - Push & BuildOneTwoThree" javascript solution
    • 2 years ago

    Yes, in a function signature if we write someFunction(someParam = someValue) we say that someParam has a "default function parameter". That means that if we pass a value to that parameter it gets the passed value, but if we pass nothing then it gets the default value.

    function logSomething(param = 'the default value') {
    	console.log(param);
    }
    logSomething('a value I passed in');
    // a value I passed in
    logSomething();
    // the default value
    
  • Custom User Avatar
    • airshawn
    • commented on "Telepathy" kata
    • 2 years ago

    These two restrictions I set are to increase the difficulty of kata, this is just to test how you can compress the program to the minimum and your proficiency in the program.

  • Custom User Avatar
    • trashy_incel
    • commented on "Telepathy" javascript solution
    • 2 years ago

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

  • Custom User Avatar
    • Mednoob
    • commented on "String ends with?" kata
    • 2 years ago

    .search uses regex for its' searching. Even if you put a string in it, it'll convert it to regex by using new RegExp(string). So, if the provided arguments are: "hello, world", ".", it'll return 0 because in regex . matches anything.

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

Confirm

  • Cancel
  • Confirm

Collect: undefined

Loading collection data...