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

reinstituted the usefull mean function and still kept it to ONE LINE!!!1!

Code
Diff
  • average=lambda t:[*map(__import__('statistics').mean,zip(*t))]
    • average=lambda t:[*map(lambda x:sum(x)/len(x),zip(*t))]
    • average=lambda t:[*map(__import__('statistics').mean,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