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
Mathematics
Logic

Got rid of the useless mean function from some obscure python library and replaced it with the greatest custom lambda making the code less readable and unmaintainable fitting it all in JUST ONE LINE!!!
Also no static typing, this is python which is known about it's dynamic goodness making this unholy code achievable
;>

Code
Diff
  • average=lambda t:[*map(lambda x:sum(x)/len(x),zip(*t))]
    • from statistics import mean
    • def average(t: tuple[tuple[int | float, ...], ...]) -> list[int | float]:
    • return [*map(mean, zip(*t))]
    • average=lambda t:[*map(lambda x:sum(x)/len(x),zip(*t))]

One liner let's gooooooooooooooooooooooooooooooooooooooooooooo

Code
Diff
  • disemvowel=lambda s:''.join(i for i in s if i.lower() not in "aieou")
    • def disemvowel(string):
    • return ''.join([i for i in string if i.lower() not in "aieou"])
    • disemvowel=lambda s:''.join(i for i in s if i.lower() not in "aieou")

rewritten in the best programming language, Python
please add random tests, i am to dumb to build them.

Code
Diff
  • str_opt = lambda s:s if len(s) == 1 else None if len({s.count(i) for i in {*s}}) <= 1 else sorted([*s], key=lambda x: s.count(x))[0]
    
    • const firstNonRepeatingCharacter = (str) => {
    • let chars = [], counts = [];
    • for(const char of str) {
    • let index = chars.indexOf(char);
    • if(index < 0) {
    • index = counts.length;
    • chars.push(char);
    • counts.push(0);
    • }
    • counts[index]++;
    • }
    • for(let index = 0; index < chars.length; index++) {
    • if(counts[index] === 1) {
    • return chars[index];
    • }
    • }
    • return null;
    • };
    • str_opt = lambda s:s if len(s) == 1 else None if len({s.count(i) for i in {*s}}) <= 1 else sorted([*s], key=lambda x: s.count(x))[0]
Fundamentals
Games
Code
Diff
  • def riddle(word)
      word.downcase.count "a-z"
    end
    • def riddle(word)
    • word.count "a-zA-Z"
    • word.downcase.count "a-z"
    • end
Code
Diff
  • module MaxNum (maxNum) where
    import Data.List
    import Control.Monad
    import Data.Char
    
    maxNum :: Int -> Int
    maxNum = read . join . map show . reverse . sort . map digitToInt . show
    • maxnum=lambda n:int(''.join(sorted(str(n),reverse=1)))
    • module MaxNum (maxNum) where
    • import Data.List
    • import Control.Monad
    • import Data.Char
    • maxNum :: Int -> Int
    • maxNum = read . join . map show . reverse . sort . map digitToInt . show