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
  • is_even=lambda x: x & 1 ^ 1
    • is_even = lambda x: x & 1 ^ 1
    • is_even=lambda x: x & 1 ^ 1
Code
Diff
  • solution=lambda s:"".join([f" {n}"if n.isupper() else n for n in s])
    • solution = lambda s: "".join([f" {n}"if n.isupper() else n for n in s])
    • solution=lambda s:"".join([f" {n}"if n.isupper() else n for n in s])

:3

Code
Diff
  • function returnhundred() {
      let P = "B"
      let O = "="
      let r = "="
      let N = "D"
      if (P+O+r+N === "B==D") {
        return 100
      }
    }
    • function returnhundred() {
    • //return 100 by lucky O_o
    • var n=Math.floor(Math.random()*100)+100
    • while(100){
    • try{
    • return return100(n)
    • }
    • catch(e){
    • return returnhundred()
    • }
    • let P = "B"
    • let O = "="
    • let r = "="
    • let N = "D"
    • if (P+O+r+N === "B==D") {
    • return 100
    • }
    • }
    • function return100(n){
    • console.log("Try to return",n)
    • if(n!=100) throw Error("It's NOT 100")
    • return 100
    • }
Code
Diff
  • int doubleValue(int x) {
      return x<<1;
    }
    
    • int doubleValue(int x) {
    • return x+x;
    • return x<<1;
    • }