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
  • MaxDigit=lambda n:int(''.join(sorted(str(n)))[::-1])
    • def MaxDigit(n): return int(''.join(sorted(str(n)))[::-1])
    • MaxDigit=lambda n:int(''.join(sorted(str(n)))[::-1])
Code
Diff
  • func_to_var=lambda x:x()
    • def func_to_var(func):
    • me = func()
    • return me
    • func_to_var=lambda x:x()
Code
Diff
  • fun=lambda x:x.upper()
    • fun=lambda x : x.upper()
    • fun=lambda x:x.upper()
Code
Diff
  • multiply_and_add_one=lambda a,b:a*b+1
    • multiply_and_add_one = lambda a, b : a * b + 1
    • multiply_and_add_one=lambda a,b:a*b+1
Code
Diff
  • add=lambda x:x
    • add=lambda x:x + x#look at the test case
    • add=lambda x:x
Code
Diff
  • let distance = 2; // try changing this value to test different outputs
    if (distance < 3) {
      console.log("ALMOST THERE!");
    }
    if (distance > 3) {
      let brake = 0;
      let gas = 5;
      console.log("yuh gotta wait a little");
    }
    
    • let distance = 1
    • let distance = 2; // try changing this value to test different outputs
    • if (distance < 3) {
    • console.log ("ALMOST THERE!")
    • console.log("ALMOST THERE!");
    • }
    • if (distance > 3) {
    • let brake=0
    • let gas=5
    • console.log ("yuh gotta wait a little")
    • }
    • let brake = 0;
    • let gas = 5;
    • console.log("yuh gotta wait a little");
    • }