作者:kevmo31
项目:canigraduate.uchicago.ed
it("handles inverse TopCoder example matrix", () => {
const matrix = [[7, 4, 3], [3, 1, 2], [3, 0, 0]];
expect(munkres(matrix)).toEqual([2, 0, 1]);
});