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
  • module Sum (Sum.sum) where
    
    import Prelude hiding (sum)
    
    sum :: [Word] -> Word
    sum [] = 0
    sum xs = foldr1 (+) xs
    • module Sum (Sum.sum) where
    • import Prelude hiding (sum)
    • sum :: [Word] -> Word
    • sum = foldr1 (+)
    • sum [] = 0
    • sum xs = foldr1 (+) xs
Fundamentals
Strings

Another one thread using 'deque' method

Code
Diff
  • from collections import deque
    
    def reverse_string(string):
        reversed_str = deque("")
        [reversed_str.appendleft(letter) for letter in string]
        return "".join(reversed_str)
    • from collections import deque
    • def reverse_string(string):
    • return string[::-1]
    • reversed_str = deque("")
    • [reversed_str.appendleft(letter) for letter in string]
    • return "".join(reversed_str)
Code
Diff
  • from collections import deque
    
    def test():
        dequedStr = deque("test")
        return ''.join([dequedStr.popleft() for x in range(len(dequedStr))])
    • from itertools import compress
    • from collections import deque
    • def test():
    • string = "letters inside a string"
    • digits = [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]
    • result = compress(string, digits)
    • return ''.join(list(result))
    • dequedStr = deque("test")
    • return ''.join([dequedStr.popleft() for x in range(len(dequedStr))])
Code
Diff
  • #include <string>
    #include <numeric>
    #include <algorithm>
    #include <string_view>
    
    class StringComparer {
    public:
        static inline auto verifySum(std::string_view w1, std::string_view w2) -> bool {
            return sumOfCharacters(w1) == sumOfCharacters(w2);
        }
      
        static inline auto sumOfCharacters(std::string_view word) -> int {
            return std::accumulate(std::begin(word), std::end(word), 0, [](int sum, const char ch) {
                return sum + static_cast<int>(ch);
            });
        }
    };
    • #include <string>
    • #include <numeric>
    • #include <algorithm>
    • #include <string_view>
    • class StringComparer {
    • public:
    • static bool verifySum(const std::string& w1, const std::string& w2) {
    • int sumW1 = sumOfCharacters(w1);
    • int sumW2 = sumOfCharacters(w2);
    • return sumW1 == sumW2;
    • static inline auto verifySum(std::string_view w1, std::string_view w2) -> bool {
    • return sumOfCharacters(w1) == sumOfCharacters(w2);
    • }
    • static int sumOfCharacters(const std::string& word) {
    • return std::accumulate(word.begin(), word.end(), 0, [](int sum, char ch) {
    • static inline auto sumOfCharacters(std::string_view word) -> int {
    • return std::accumulate(std::begin(word), std::end(word), 0, [](int sum, const char ch) {
    • return sum + static_cast<int>(ch);
    • });
    • }
    • };

Condensed into a single line

Code
Diff
  • namespace Solution
    {
        public class MyCalculator
        {
            public int Add(int a, int b) => a + b;
        }
    }
    • namespace Solution
    • {
    • public class MyCalculator
    • {
    • public int Add(int a, int b)
    • {
    • return a + b;
    • }
    • public int Add(int a, int b) => a + b;
    • }
    • }
Code
Diff
  • def foo(n):
        if n == 0:
            while True:
                yield 0
        else:
            for v in foo(n-1):
                yield v+1
    • USING: kernel math generators combinators.extras ;
    • IN: example
    • GEN: foo ( n -- gen )
    • [ [ 0 yield ] forever ]
    • [ 1 - foo [ [ next 1 + yield ] keep ] forever drop ] if-zero ;
    • def foo(n):
    • if n == 0:
    • while True:
    • yield 0
    • else:
    • for v in foo(n-1):
    • yield v+1