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.
let distance = 2; // try changing this value to test different outputs if (distance < 3) { console.log("ALMOST THERE!"); } if (distance > 3) { let brake = 0; let gas = 5; console.log("yuh gotta wait a little"); }
let distance = 1- let distance = 2; // try changing this value to test different outputs
- if (distance < 3) {
console.log ("ALMOST THERE!")- console.log("ALMOST THERE!");
- }
- if (distance > 3) {
let brake=0let gas=5console.log ("yuh gotta wait a little")}- let brake = 0;
- let gas = 5;
- console.log("yuh gotta wait a little");
- }