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
let countChars (s : string) = 
    s.ToCharArray()
    |> List.ofArray
    |> List.groupBy(fun x -> x)
    |> List.map(fun (c, l) -> (c, l.Length))
    |> Map.ofSeq

printfn "%A" ("abacdacb" |> countChars)
Ruby on Rails
Frameworks

A basic example of how to setup an active record challenge.

Note: Make sure to check out the preloaded section for how to configure the database.

ActiveRecord::Schema.define do
    create_table :albums do |table|
        table.column :title, :string
        table.column :performer, :string
    end

    create_table :tracks do |table|
        table.column :album_id, :integer
        table.column :track_number, :integer
        table.column :title, :string
    end
end

class Album < ActiveRecord::Base
    has_many :tracks
end

class Track < ActiveRecord::Base
    belongs_to :album
end
IO

A basic proof of how you can create content that writes to the file system.

# you can write to your codewarrior home folder
`echo "example text" > /home/codewarrior/example.txt`

Often times kata authors want to prevent certain code from being used within a kata, to increase the level of difficulty. This is an example of how you can read the solution.txt file into your code.

This example is in JavaScript, but the /home/codewarrior/solution.txt file is available for all languages.

// write a add function that doesn't use the plus symbol
function add(a, b){
  return a + b;
}

// Make sure to view the test cases to see how this test fails
Rendering
Graphics
Charts
Reporting
Data

This is a basic example of rendering a plot chart to the output window. It uses matplotlib and mpld3.

Some dummy tests were added at the end to demonstrate how you could have a challenge based on rendering data to a chart and then you could have tests that test the chart data after the fact - allowing you to have an interactive visualazation for the data that is being tested.

Can you figure out how to do something like this in another language?
# Example taken from http://mpld3.github.io/examples/drag_points.html

import numpy as np
import matplotlib
matplotlib.use('Agg') # need to do this to set the display type
import matplotlib.pyplot as plt
import matplotlib as mpl

fig, ax = plt.subplots()
np.random.seed(0)
points = ax.plot(np.random.normal(size=20),
                 np.random.normal(size=20), 'or', alpha=0.5,
                 markersize=50, markeredgewidth=1)
ax.set_title("Click and Drag", fontsize=18)

# See Preloaded code for JS DragPlugin
plugins.connect(fig, DragPlugin(points[0]))
print(mpld3.fig_to_html(fig))
Testing
Redis
NoSQL
Message Queues
Databases
Information Systems
Data

This is a very basic example of how you can start a redis server using async code and wrapping it so that you can enable the solution to run only after the server has started.

This example also demonstrates how you can support async code within it tests. To enable async mode, you can pass true or a number value as the 2nd argument to describe. If true is provided, 2000 is used as the default number value, which is used as the timeout for each it run.

Notice how the it function has a done callback. You are required to call this when using async code so that the function knows when the it test has finished and can move on to the next test.

const redis = require("redis");
const Promise = require("bluebird");

// promisfy redis client to make it much easier to work with.
Promise.promisifyAll(redis.RedisClient.prototype);

// solution is your entry point. The redis server will not be available until solution is called. Since
// we are using async code you must call done() once you have completed the requirements.

function solution(done){
  let client = redis.createClient();
  
  // use Promise.join to make sure the done callback is fired after all other async operations have fired.
  Promise.join(
    client.setAsync("foo", "bar"),
    client.hsetAsync("h", "key", "value"),
    done
  )
}

Given a list of numbers, return the combination that is largest number.

As output can be large, return the result in String format.

Example:

Input:

[5, 50, 56]

Output:

56550

import java.util.*;

class Solution {
  public static String largestNumber(Integer[] nums) {
    Arrays.sort( nums, new Comparator<Integer>() {
      
      @Override
      public int compare(Integer a, Integer b) {
        String aStr = a.toString();
        String bStr = b.toString();
        
        return (aStr + bStr).compareTo(bStr + aStr) * -1;
      }
      
    } );
    
    String result = "";
    for(Integer num : nums) {
      result += num.toString();
    }
    
    return result;
  }
}

My first performance tester for functions, it was inspired because of the lack of this function in http://pythontutor.com/

from time import time

def helper(func,*arg):
    start = time()
    func(*arg)
    total = round(time()-start,5)*100
    return total

def testPerformance(arg,*funcs):
    """
    First parameter is a tuple with all the arguments for each function
    Each function should take the same amount of parameters in the 
    same order
    The output is a dict with function:timeFromMinimum pair
    """
    times = []
    for func in funcs:
        times.append(helper(func,*arg))
    minimum = min(times)
    sustractivetimes = [i - minimum for i in times]
    result = {i:j for i,j in zip(funcs ,sustractivetimes)}
    return result

def lambdaproach(x):
    minimum = min(x)
    return list(map(lambda x: x - minimum, x))
    
def listcomp1(x):
    minimum = min(x)
    return [i - minimum for i in x]
    
def listcomp2(x):
    minimum = min(x)
    return [sustract(i,minimum) for i in x]
    
def sustract(x,y):
    return x - y

nums = ([i for i in range(5,10)],)
testPerformance(nums,lambdaproach,listcomp1,listcomp2)

I made a function that reverses the words in a string:

def shuffle(st):
    st = st.split(' ')
    for x in range(0, len(st)):
        st[x] = list(st[x])
        st[x].reverse()
        st[x] = ''.join(st[x])
    st = ' '.join(st)
    return st

Here's the code that I'm using to list all files in a given directory. The question is, is there any other way to do this?

import glob
print(glob.glob('directorypath'))# Replace 'directorypath' with path to directory