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
  • 1 // :/
    • 4
    • 1 // :/
Code
Diff
  • class IsEqual:
        def __init__(self, param):
            self.param = param
    
        def __eq__(self, other):
            return 'yes' if other.param == self.param else 'no'
    • def is_equal(a: any, b: any) -> str:
    • '''
    • 'yes' if a and b are the same value, else 'no'.
    • a and b could be any datatype.
    • '''
    • return 'yes' if a == b else 'no'
    • class IsEqual:
    • def __init__(self, param):
    • self.param = param
    • def __eq__(self, other):
    • return 'yes' if other.param == self.param else 'no'
Fundamentals
Strings
Code
Diff
  • def digest(arg):
        return " ".join(list(arg))
    • digest = lambda food: ''.join([f'{letter} ' for letter in food]).rstrip()
    • def digest(arg):
    • return " ".join(list(arg))
Fundamentals
Code
Diff
  • def hello_message():
        return 'Hello World!'
    
    
    
        
    • def hello_message():
    • msg = 'Hello World!'
    • return msg
    • return 'Hello World!'
Code
Diff
  • from math import factorial as code
    
    def factorial(wars):
        return code(wars)
    • import math
    • def factorial(n):
    • return math.factorial(n)
    • from math import factorial as code
    • def factorial(wars):
    • return code(wars)
Code
Diff
  • bool isBalanced(const std::string& s) {
      int count = 0;
      for (const auto c: s) {
        if (count+= c=='(' ? +1: c==')'?-1:0; count <0)
          return false;
      }
      return count == 0;
    }
    • bool isBalanced(const std::string& s) {
    • int count = 0;
    • for (size_t i = 0; i < s.length(); i++) {
    • if (s[i] == '(') {
    • count++;
    • }
    • if (s[i] == ')') {
    • if (count <= 0) { return false; }
    • count--;
    • }
    • for (const auto c: s) {
    • if (count+= c=='(' ? +1: c==')'?-1:0; count <0)
    • return false;
    • }
    • return count == 0;
    • }