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
  • select * from transactions
    order by  total_price asc;
    • -- Code Here
    • select * from transactions
    • order by total_price asc;
Code
Diff
  • -- Code Here
    SELECT *
    FROM transactions
    WHERE customer LIKE 'S%r';
    • --- Code Here
    • -- Code Here
    • SELECT *
    • FROM transactions
    • WHERE customer LIKE 'S%r';
Code
Diff
  • SELECT*FROM transactions
    WHERE customer is not NULL
    • -- Code Here
    • SELECT*FROM transactions
    • WHERE customer is not NULL
Code
Diff
  • -- Code Here
    SELECT
      *
    FROM
      transactions
    WHERE customer IS NULL;
    • --- Code Here
    • -- Code Here
    • SELECT
    • *
    • FROM
    • transactions
    • WHERE customer IS NULL;
Code
Diff
  • SELECT *
    FROM transactions
    WHERE store NOT IN ('BIE Store Jakarta','BIE Store Bandung')
    • -- Code Here
    • SELECT *
    • FROM transactions
    • WHERE store NOT IN ('BIE Store Jakarta','BIE Store Bandung')
Code
Diff
  • -- Code Here
    SELECT *
    FROM transactions
    WHERE
      store IN ('BIE Store Bandung','BIE Store Palembang','BIE Store Malang');
    • --- Code Here
    • -- Code Here
    • SELECT *
    • FROM transactions
    • WHERE
    • store IN ('BIE Store Bandung','BIE Store Palembang','BIE Store Malang');
Code
Diff
  • SELECT 
      date, 
      store, 
      total_price 
    FROM 
      transactions
    WHERE 
      date BETWEEN '2022-01-01' AND '2022-01-03'
    • -- Code Here
    • SELECT
    • date,
    • store,
    • total_price
    • FROM
    • transactions
    • WHERE
    • date BETWEEN '2022-01-01' AND '2022-01-03'
Code
Diff
  • -- Code Here
    select * from transactions where store = 'BIE Store Bandung' and total_price <= 100000;
    • --- Code Here
    • -- Code Here
    • select * from transactions where store = 'BIE Store Bandung' and total_price <= 100000;
Code
Diff
  • -- Code here
    SELECT id, name, age, kota
    FROM customers
    WHERE kota = 'Tasikmalaya';
    • --- Code here
    • -- Code here
    • SELECT id, name, age, kota
    • FROM customers
    • WHERE kota = 'Tasikmalaya';
Code
Diff
  • -- Code Here
    SELECT name AS nama, age AS umur FROM customers
    • --- Code Here
    • -- Code Here
    • SELECT name AS nama, age AS umur FROM customers