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
  • def even_or_odd(n):
        return ("Even", "Odd")[n % 2]
    
    
    • def even_or_odd(n):
    • return ["Even", "Odd"][n % 2]
    • return ("Even", "Odd")[n % 2]
Code
Diff
  • is_even = lambda x: not x & 1
    
    • is_even = lambda x: not(x % 2)
    • is_even = lambda x: not x & 1
Code
Diff
  • import java.lang.Math;
    interface Kata {
      static int doubleValue(int x) {
        boolean isNeg=x<0;
        if (isNeg){
          x= -x;
        }
        x=x+x;
        StringBuilder b= new StringBuilder();
        while (x!=0){
          b.append(x%2==0?"h":"a-");
          x=x/2;
        }
        b=b.reverse();
        String s=b.toString().replaceAll("-", "");
        int curr=s.length()-1;
        int acc=0;
        int i=0;
        while (i<s.length()){
          acc+= s.charAt(i)=='a'? (int) Math.pow(2,curr):0;
          i++;
          curr--;
        }
        return isNeg?-acc:acc;
      }
    }
    • import java.lang.Math;
    • interface Kata {
    • static int doubleValue(int x) {
    • boolean isNeg=x<0;
    • if (isNeg){
    • x= -x;
    • }
    • x=x+x;
    • StringBuilder b= new StringBuilder();
    • while (x!=0){
    • b.append(x%2==0?"0":"1");
    • b.append(x%2==0?"h":"a-");
    • x=x/2;
    • }
    • b=b.reverse();
    • String s=b.toString();
    • String s=b.toString().replaceAll("-", "");
    • int curr=s.length()-1;
    • int acc=0;
    • int i=0;
    • while (i<s.length()){
    • acc+= s.charAt(i)=='1'? (int) Math.pow(2,curr):0;
    • acc+= s.charAt(i)=='a'? (int) Math.pow(2,curr):0;
    • i++;
    • curr--;
    • }
    • return isNeg?-acc:acc;
    • }
    • }
Code
Diff
  • helloWorld = n => `Hello ${n}`;
    • helloWorld = n =>`Hello ${n}`
    • helloWorld = n => `Hello ${n}`;