• 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
testfirstcoder Avatar
Name:Unknown
Clan:Unknown
Member Since:Nov 2018
Last Seen:Mar 2024
Profiles:
Following:0
Followers:3
Allies:0
View Profile Badges
  • Stats
  • Kata
  • Collections
  • Kumite
  • Social
  • Discourse
  • Conversations
  • Replies
  • Authored (23)
  • Needs Resolution
  • Custom User Avatar
    • testfirstcoder
    • commented on ""Write Number in Expanded Form" C# Translation"
    • 6 years ago

    No. There was not any reason for that. Test examples added in description.

  • Custom User Avatar
    • testfirstcoder
    • commented on ""Write Number in Expanded Form" C# Translation"
    • 6 years ago

    Added one more test and changed the datatype (int => long) in random tests because of the parameter type in the method ExpandedForm.

  • Custom User Avatar
    • testfirstcoder
    • commented on "Highest Rank Number in an Array" kata
    • 6 years ago

    Go translation added. Let it go :)

  • Custom User Avatar
    • testfirstcoder
    • commented on ""Highest Rank Number in an Array" F# Translation"
    • 6 years ago

    Random tests added.

  • Custom User Avatar
    • testfirstcoder
    • created a suggestion for "Maximum subarray sum" kata
    • 7 years ago

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

  • Custom User Avatar
    • testfirstcoder
    • commented on "Are they the "same"?" java solution
    • 7 years ago

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

  • Custom User Avatar
    • testfirstcoder
    • commented on "Are they the "same"?" kata
    • 7 years ago

    In C# use, e.g:

    int[] a = new[] { 1, 2, 3 };
    
    System.Console.WriteLine($"[{string.Join(", ", a)}]");
    
  • Custom User Avatar
    • testfirstcoder
    • created a suggestion for "Integers: Recreation One" kata
    • 7 years ago

    Please add one more edge case test in C#:

    [Test]
    public void Test12() => Assert.AreEqual("[[1, 1], [42, 2500]]", SumSquaredDivisors.listSquared(1, 42));
    
  • Custom User Avatar
    • testfirstcoder
    • created a suggestion for "Integers: Recreation One" kata
    • 7 years ago

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

  • Custom User Avatar
    • testfirstcoder
    • created a suggestion for "Geometric Progression Sequence" kata
    • 7 years ago

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

  • Custom User Avatar
    • testfirstcoder
    • created a suggestion for "Numbers Which Sum of Powers of Its Digits Is The Same Number" kata
    • 7 years ago

    In C# random tests should generate random numbers of type long since the method EqSumPowDigSol takes a parameter of type long, e.g:

    long n = (long)(rnd.NextDouble() * (long.MaxValue));
    
  • Custom User Avatar
    • testfirstcoder
    • commented on "Are they the "same"?" kata
    • 7 years ago

    The pown function can cause an overflow exception, e.g:

    pown Int64.MaxValue 2 // => OverflowException
    
    Int64.MaxValue * Int64.MaxValue // => 1
    
  • Custom User Avatar
    • testfirstcoder
    • commented on "Simple Fun #23: Square Digits Sequence" kata
    • 7 years ago

    Fixed it with other fork.

  • Custom User Avatar
    • testfirstcoder
    • commented on "Simple Fun #23: Square Digits Sequence" kata
    • 7 years ago

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

  • Custom User Avatar
    • testfirstcoder
    • resolved an issue on "Simple Fun #23: Square Digits Sequence" kata
    • 7 years ago

    Thanks for pointing out this issue. Added necessary import declarations for random tests.

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

Confirm

  • Cancel
  • Confirm

Collect: undefined

Loading collection data...