Skip to main content

Talk: Excercise and Exercism are Excellent

This talk consists of multiple slides, each contained within its own section. Each section has a link at the end to the next section.

Slide 10: Semi-automated feedback

Submitted code
const PREPARATION_MINUTES_PER_LAYER = 2;

export function preparationTimeInMinutes(numberOfLayers) {
  return numberOfLayers * PREPARATION_MINUTES_PER_LAYER;
}
Similar code
const CRYING_BEFORE_DINING = 2;


export function preparationTimeInMinutes(layers) {

  return layers * CRYING_BEFORE_DINING;
}