Start a new Kumite
AllAgda (Beta)BF (Beta)CCFML (Beta)ClojureCOBOL (Beta)CoffeeScriptCommonLisp (Beta)CoqC++CrystalC#D (Beta)DartElixirElm (Beta)Erlang (Beta)Factor (Beta)Forth (Beta)Fortran (Beta)F#GoGroovyHaskellHaxe (Beta)Idris (Beta)JavaJavaScriptJulia (Beta)Kotlinλ Calculus (Beta)LeanLuaNASMNim (Beta)Objective-C (Beta)OCaml (Beta)Pascal (Beta)Perl (Beta)PHPPowerShell (Beta)Prolog (Beta)PureScript (Beta)PythonR (Beta)RacketRaku (Beta)Reason (Beta)RISC-V (Beta)RubyRustScalaShellSolidity (Beta)SQLSwiftTypeScriptVB (Beta)
Show only mine

Kumite (ko͞omiˌtā) is the practice of taking techniques learned from Kata and applying them through the act of freestyle sparring.

You can create a new kumite by providing some initial code and optionally some test cases. From there other warriors can spar with you, by enhancing, refactoring and translating your code. There is no limit to how many warriors you can spar with.

A great use for kumite is to begin an idea for a kata as one. You can collaborate with other code warriors until you have it right, then you can convert it to a kata.

Ad
Ad
Code
Diff
  • -- Moonscript!
    multiply_and_add_one = (a, b) -> a * b + 1
    
    { :multiply_and_add_one }
    • local multiply_and_add_one = function(a, b)
    • return a * b + 1
    • end
    • return multiply_and_add_one
    • -- Moonscript!
    • multiply_and_add_one = (a, b) -> a * b + 1
    • { :multiply_and_add_one }
Code
Diff
  • a=lambda x:1
    • above_two=lambda x:1
    • a=lambda x:1
Test Cases
Diff
  • import codewars_test as test
    # TODO Write tests
    import solution # or from solution import example
    
    # test.assert_equals(actual, expected, [optional] message)
    @test.describe("Example")
    def test_group():
        @test.it("test case")
        def test_case():
            test.assert_equals(a(0), True)
            test.assert_equals(a(1), True)
            test.assert_equals(a(2), True)
            test.assert_equals(a(3), True)
            test.assert_equals(a(4), True)
            test.assert_equals(a(5), True)
    
    • import codewars_test as test
    • # TODO Write tests
    • import solution # or from solution import example
    • # test.assert_equals(actual, expected, [optional] message)
    • @test.describe("Example")
    • def test_group():
    • @test.it("test case")
    • def test_case():
    • test.assert_equals(above_two(0), True)
    • test.assert_equals(above_two(1), True)
    • test.assert_equals(above_two(2), True)
    • test.assert_equals(above_two(3), True)
    • test.assert_equals(above_two(4), True)
    • test.assert_equals(above_two(5), True)
    • test.assert_equals(a(0), True)
    • test.assert_equals(a(1), True)
    • test.assert_equals(a(2), True)
    • test.assert_equals(a(3), True)
    • test.assert_equals(a(4), True)
    • test.assert_equals(a(5), True)
Lists

as the relative order between two equal ints does not matter (and sort would ruin it anyways), we can just use partition, instead of stable_partition.

Added a lot of tests

Code
Diff
  • #include <vector>
    
    void re_arrange(std::vector<int>& data) {
        auto it = std::partition(data.begin(), data.end(), [](int x) { return x % 2 == 0; });
        std::sort(data.begin(), it);
        std::sort(it, data.end());
    }
    • #include <vector>
    • void re_arrange(std::vector<int>& data) {
    • auto it = std::stable_partition(data.begin(), data.end(), [](int x) { return x % 2 == 0; });
    • auto it = std::partition(data.begin(), data.end(), [](int x) { return x % 2 == 0; });
    • std::sort(data.begin(), it);
    • std::sort(it, data.end());
    • }
Code
Diff
  • #
    • f=__import__("operator").call
    • #