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 find_multiples_of_4_and_6(n):
        for i in range(n):
            if not (i % 4 and i % 6):
                yield i
    
    • find_multiples_of_4_and_6 = lambda n : [i for i in range(n) if not (i % 4 and i % 6)]
    • def find_multiples_of_4_and_6(n):
    • for i in range(n):
    • if not (i % 4 and i % 6):
    • yield i

Added some test cases.

Code
Diff
  • isEven = num => Number.isInteger(num) ? !(num & 1) : undefined;
    • isEven = _0x55bac8 => !(_0x55bac8 % 2);
    • isEven = num => Number.isInteger(num) ? !(num & 1) : undefined;
Code
Diff
  • def sort(s):
        return "".join(sorted([i for i in s if i.isupper()])) + "".join(sorted([i for i in s if i.islower()])) + "".join(sorted([i for i in s if i.isdigit()]))
    • def sort(s):
    • from string import ascii_lowercase, ascii_uppercase
    • alphabet = list(ascii_uppercase) + list(ascii_lowercase) + list("0123456789")
    • out = ""
    • for letter in alphabet:
    • for char in s:
    • if char == letter:
    • out += char
    • return out
    • return "".join(sorted([i for i in s if i.isupper()])) + "".join(sorted([i for i in s if i.islower()])) + "".join(sorted([i for i in s if i.isdigit()]))
Code
Diff
  • function greetings(){
      let name = "seraph776";
      return `My name is: ${name}`;  
    }
    • var myName = 'Elijah'
    • console.log(`My name is: ${myName}`)
    • function greetings(){
    • let name = "seraph776";
    • return `My name is: ${name}`;
    • }
Code
Diff
  • const evenOrOdd = (number = prompt("Enter a number: ")) => `The number is ${number & 1 ? "even" : "odd"}.`;
    • const evenOrOdd = (number = prompt("Enter a number: ")) => `The number is ${number % 2 ? "even" : "odd"}.`;
    • const evenOrOdd = (number = prompt("Enter a number: ")) => `The number is ${number & 1 ? "even" : "odd"}.`;