• 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
textninja Avatar
Name:Unknown
Clan:Unknown
Member Since:Aug 2016
Last Seen:May 2025
Profiles:
Following:11
Followers:7
Allies:0
View Profile Badges
Ad
Would You Pass the Google SQL Interview? Test Yourself with These 7 Concepts
Study up for your next SQL interview with these interview questions.
  • Stats
  • Kata
  • Collections
  • Kumite
  • Social
  • Discourse
  • Conversations
  • Replies (51)
  • Authored
  • Needs Resolution
  • Custom User Avatar
    • arg_arthur
    • commented on "Divisors Of Really Big Numbers" python solution
    • 16 months ago

    very nice!

  • Custom User Avatar
    • ZolotarevAlexandr
    • commented on "Ways from one number to another" kata
    • 2 years ago

    Thanks! :)

  • Custom User Avatar
    • dfhwze
    • commented on "Ways from one number to another" kata
    • 2 years ago

    approval time then :)

  • Custom User Avatar
    • Yushi.py
    • commented on "Divisors Of Really Big Numbers" kata
    • 2 years ago

    Don't feel bad, your solution is quite neat and readable, props to you.

    It took me quite a few hours to make it and I had never tried this "micro-optimization genre", so I'm glad you apprciate it.

    I also don't really know what the rating should be. Maybe 4 kyu, but I honestly have no idea.

  • Custom User Avatar
    • monadius
    • commented on "Ways from one number to another" kata
    • 2 years ago

    I don't like the idea of returning all possible paths. Many existing solutions do not construct paths explicitly and these solutions are much faster than solutions which enumerate all paths. With the current constraints, the number of paths is not big. But if the upper bound of target_num is increased then the number of path will become quite large and it will be infeasible to return all possible paths.

  • Custom User Avatar
    • dfhwze
    • commented on "Ways from one number to another" kata
    • 2 years ago

    I can already see users posting comments: why is the expected result 73 instead of 72? That's the problem with the result being a black box magic number. Why not expect the full progress on each path taken as result?

    find(1, 7) -> 5
    
    expect lists of tuples instead, each list is a path, each tuple contains the operation picked, and the intermediate result after applying that operation
    
    [
      [(1, 4), (1, 7)], 
      [(2, 2), (2, 4), (1, 7)], 
      [(2, 2), (3, 4), (1, 7)],
      [(3, 2), (2, 4), (1, 7)], 
      [(3, 2), (3, 4), (1, 7)]
    ]
    
  • Custom User Avatar
    • ZolotarevAlexandr
    • commented on "Ways from one number to another" kata
    • 2 years ago

    Thanks for positive feedback!

  • Custom User Avatar
    • mdandre
    • resolved an issue on "Skyscrapers Area" kata
    • 2 years ago

    fixed

  • Custom User Avatar
    • mauro-1
    • commented on "Find X Ⅱ" kata
    • 3 years ago

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

  • Custom User Avatar
    • Alexander-jsdev
    • commented on "WeakStore" kata
    • 3 years ago

    Thank you very much for your feedback, it is valuable to me! I have a few ready-made ideas on the topic of information security in stock, so look forward to it soon)

  • Custom User Avatar
    • dfhwze
    • commented on "Find X Ⅱ" kata
    • 3 years ago

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

  • Custom User Avatar
    • RealKenshiro
    • commented on "Find X Ⅱ" kata
    • 3 years ago

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

  • Custom User Avatar
    • dfhwze
    • commented on "Find X Ⅱ" kata
    • 3 years ago

    you lost me right after 'suppose'

  • Custom User Avatar
    • RealKenshiro
    • commented on "Find X Ⅱ" kata
    • 3 years ago

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

  • Custom User Avatar
    • dfhwze
    • commented on "Find X Ⅱ" kata
    • 3 years ago

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

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

Confirm

  • Cancel
  • Confirm

Collect: undefined

Loading collection data...