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
Image
Ad
Image

just use compare aye?

Code
Diff
  • int compare(int a, int b) {
    	return a > b ? a : b;
    }
    • int compare(int a, int b) {
    • return a % b == a ? b : a;
    • return a > b ? a : b;
    • }
Code
Diff
  • def first_non_repeating_char(s):
        return [i for i in s if s.count(i)==1][0]
    • f=lambda s:next((c for c in s if s.lower().count(c.lower())<2),0)
    • def first_non_repeating_char(s):
    • return [i for i in s if s.count(i)==1][0]
Fundamentals

The string slice indexing makes it a bit clunky, but this works too.

Code
Diff
  • fn get_grade(score: usize) -> &'static str {
        if score <= 100 { &"FFFFFFDCBAA"[score/10..=score/10] } else { "Invalid" }
    }
    • class Kata {
    • public static String getGrade(int s) {
    • return s >= 0 && s <= 100 ? "" + "FFFFFFDCBAA".charAt(s / 10) : "Invalid";
    • }
    • fn get_grade(score: usize) -> &'static str {
    • if score <= 100 { &"FFFFFFDCBAA"[score/10..=score/10] } else { "Invalid" }
    • }

This code is completely nonsense please ignor it

Code
Diff
  • const zero=(a,b)=> 0;
    
    • const zero = (ajith, vijay) => {
    • const sum = ajith + vijay
    • return 0
    • }
    • const zero=(a,b)=> 0;