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

What if i like to write

Code
Diff
  • function returnhundred() {
      return 1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1 +
        1;
    }
    • function returnhundred() {
    • return 10 ** 2;
    • return 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1 +
    • 1;
    • }

When you have a thread ouputting to stdout, and you want to catch its output in a test case...

(defmacro with-out-str-not-thread-safe
  "A version of clojure.core/with-out-str that is not thread-safe"
  [& body]
  `(let [s# (StringWriter.)]
     (with-redefs [*out* s#]
       ~@body
       (str s#))))
Redis
NoSQL
Databases

A basic example of how to run a Redis in ruby on CW.

fork do
  exec "redis-server"
end

require 'redis'
r = Redis.new

r.set('a', 'b')
Code
Diff
  • const addArr = arr => arr.reduce((a, b) => a + b, 0) || null
    • const addArr = (arr) => {
    • let sum = 0;
    • for (let i = 0; i < arr.length; i++) {
    • sum += arr[i];
    • }
    • return sum || null;
    • };
    • const addArr = arr => arr.reduce((a, b) => a + b, 0) || null