• 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
mattbrendzel Avatar
Name:Matt Brendzel
Clan:General Assembly
Skills:ruby, javascript, java
Member Since:Feb 2014
Last Seen:Jun 2025
Profiles:
Following:924
Followers:925
Allies:913
View Profile Badges
  • Stats
  • Kata
  • Collections
  • Kumite
  • Social
  • Discourse
  • Conversations (20)
  • Replies
  • Authored
  • Needs Resolution
  • Custom User Avatar
    • cliffstamp
    • commented on ""Figure Out the Notes" JavaScript Translation"
    • 7 years ago

    Could you add random tests to the translation?

  • Custom User Avatar
    • Voile
    • resolved an issue on "Validate Sudoku with size `NxN`" kata
    • 7 years ago

    Fixed

  • Custom User Avatar
    • Voile
    • resolved an issue on "Number of trailing zeros of N!" kata
    • 7 years ago

    Not an issue

  • Custom User Avatar
    • JohanWiltink
    • commented on "Number of trailing zeros of N!" kata
    • 9 years ago

    Your solution may be off-by-one. Or the kata might be, I'm really not sure anymore.

  • Custom User Avatar
    • mattbrendzel
    • created an issue for "Number of trailing zeros of N!" kata
    • 9 years ago

    Provided test cases in the Ruby kata are incorrect.

    28! is 304888344611713860501504000000; it ends in 6 zeros.

    30! is 265252859812191058636308480000000; it ends in 7 zeros

    36! is 371993326789901217467999448150835200000000; it ends in 8 zeros.

    http://keisan.casio.com/calculator

  • Custom User Avatar
    • mattbrendzel
    • commented on "Solving Quadratics" kata
    • 9 years ago

    JavaScript. Actually, I tried it again last night, and I was able to get it to work. Bizarre...

  • Custom User Avatar
    • wthit56
    • commented on "Solving Quadratics" kata
    • 9 years ago

    Interesting... Which language are you using?

  • Custom User Avatar
    • mattbrendzel
    • commented on "Solving Quadratics" kata
    • 9 years ago

    Can't access Math?

    TypeError: Property 'sqrt' of object #<Object> is not a function
       at solveQuadratic
                
    
  • Custom User Avatar
    • munyari
    • commented on "Validate Sudoku with size `NxN`" kata
    • 9 years ago

    @mattbrendzel, @nbeck the problem lies with the parentheses on the class name Sudoku() and passing self as parameter to the method. Try removing these. Also, write an initialize method.

  • Custom User Avatar
    • nbeck
    • commented on "Validate Sudoku with size `NxN`" kata
    • 9 years ago

    Same here, have you find something ?

  • Custom User Avatar
    • mattbrendzel
    • created an issue for "Validate Sudoku with size `NxN`" kata
    • 9 years ago

    Getting syntax errors in Ruby - it's reporting a mysterious \n that it doesn't like and that I can't seem to find.

  • Custom User Avatar
    • mattbrendzel
    • commented on "Improving hashes." ruby solution
    • 10 years ago

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

  • Custom User Avatar
    • mattbrendzel
    • commented on "Readability is King" ruby solution
    • 10 years ago

    Damn, that's a beautiful solution. Didn't even occur to me to use .scan, and it makes way more sense to calculate averages using overall sums like this.

  • Custom User Avatar
    • g964
    • resolved an issue on "Ruby Square into Squares" kata
    • 11 years ago

    Yes, you are right. I'll modify the description. The algorithm must be greedy: at each stage one must find the biggest square that can be used in the sum of squares.
    For example if n=11, n^2=121 and at least I have two decompositions: [1 2 4 10] and [2 6 9]. I keep [1 2 4 10] because 10^2 is bigger than 9^2 to remove from 121.
    For the decomposition of 50^2, I have the solution [1,3,5,8,49] which is "greedy" because 49^2 is bigger to remove from 50^2 than 48^2 or worse 40^2.
    Hopefully it would be more precise. Thanks for the help.

  • Custom User Avatar
    • mattbrendzel
    • created an issue for "Ruby Square into Squares" kata
    • 11 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...