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
Fundamentals

Given an integer n return whether or not the integer is even. Your code may not contain any numbers, and it may contain no more than a single space (' ') character.

E.g.:

is_even(2) # True
is_even(5) # False
is_even(123456) # True
is_even(654321) # False
Code
Diff
  • is_even=lambda n:not(n%(ord('ࠀ')>>ord('\n'))) # I can't get out the final space!
    • is_even(){__asm("mov%rdi,%rax\nshr%rax\nshl%rax\ncmp%rax,%rdi\nsete%al\nleave\nret");}
    • is_even=lambda n:not(n%(ord('ࠀ')>>ord('\n'))) # I can't get out the final space!
Code
Diff
  • SELECT DISTINCT name
    FROM greetings
    ORDER BY NAME ASC
    LIMIT 7;
    
    • SELECT name FROM greetings
    • WHERE upper(greeting) like'H___O';
    • SELECT DISTINCT name
    • FROM greetings
    • ORDER BY NAME ASC
    • LIMIT 7;
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
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"}.`;