Bakery Quality Control
Learn this problemProblem statement
Your program controls boxes of pastries coming out of a bakery. For each produced box, you are required to compare its contents to a list of expected items (its "template") and determine whether the box is correct or not. The contents of a box is described by a string such as "pcm" for 'p'ie, 'c'ookie, and 'm'uffin, or "ddp" for 'd'onut, 'd'onut, and 'p'ie. The template is described in the same manner. So given a list of (box, template) pairs, your program should indicate how many times it found a mismatch between a box and its template and return that total.
A box contains no more than 10 items, and there are no more than 1000 boxes to check at a time. Items in a box can be repeated, so "cc" (cookie cookie) is not the same as "c" (cookie). Items are not ordered, so the box "cm" (cookie, muffin) matches the template "mc" (muffin, cookie).
Function
countMismatchedBoxes(boxes: String[][]) → int
Complete the function countMismatchedBoxes in the editor.
countMismatchedBoxes has the following parameters:
String[][] boxes: a list of pairs where each pair contains the contents of a box followed by its expected template
Returns
int: the number of boxes that do not match their templates
Examples
Example 1
boxes = [["cm", "mc"], ["ccm", "mc"], ["pm", "mc"], ["c", "mc"]]return = 3