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.
lazy
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(1+32+43,76)
- 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(1+32+43,76 )- test.assert_equals(1+32+43,76)
import codewars_test as test # TODO Write tests from solution import f y = 1 def actual_incrementer(): global y y += 1 return y # modified function with decorator x=1 @f def modified_incrementer(): global x x += 1 return x @test.describe("test cases") def test_group(): @test.it("actual incrementer") def _(): test.assert_equals(actual_incrementer(), 2) test.assert_equals(actual_incrementer(), 3) test.assert_equals(actual_incrementer(), 4) @test.it("modified incrementer") def _(): test.assert_equals(modified_incrementer, 2) test.assert_equals(modified_incrementer, 2) test.assert_equals(modified_incrementer, 2)
- import codewars_test as test
- # TODO Write tests
from solution import func_to_var- from solution import f
- y = 1
- def actual_incrementer():
- global y
- y += 1
- return y
- # modified function with decorator
- x=1
@func_to_var- @f
- def modified_incrementer():
- global x
- x += 1
- return x
- @test.describe("test cases")
- def test_group():
- @test.it("actual incrementer")
- def _():
- test.assert_equals(actual_incrementer(), 2)
- test.assert_equals(actual_incrementer(), 3)
- test.assert_equals(actual_incrementer(), 4)
- @test.it("modified incrementer")
- def _():
- test.assert_equals(modified_incrementer, 2)
- test.assert_equals(modified_incrementer, 2)
- test.assert_equals(modified_incrementer, 2)
M=lambda n:int("".join(sorted(str(n))[::-1]))
MaxDigit=lambda n:int("".join(sorted(str(n))[::-1]))- M=lambda n:int("".join(sorted(str(n))[::-1]))
import codewars_test as test @test.describe("Example") def test_group(): @test.it("test case") def test_case(): samples=[(12,21),(677,776),(101,110),(400000005000007000,754000000000000000),(307778062924466824,988777666444322200)] for n,e in samples: test.assert_equals(M(n),e)
- import codewars_test as test
# test.assert_equals(actual, expected, [optional] message)- @test.describe("Example")
- def test_group():
- @test.it("test case")
- def test_case():
samples = [(12, 21), (677, 776), (101, 110), (400000005000007000, 754000000000000000), (307778062924466824,988777666444322200)]for n, e in samples:test.assert_equals(MaxDigit(n), e)- samples=[(12,21),(677,776),(101,110),(400000005000007000,754000000000000000),(307778062924466824,988777666444322200)]
- for n,e in samples:
- test.assert_equals(M(n),e)