github-profile-readme-generator
Version:
github-profile-readme-generator
25 lines (22 loc) • 539 B
JavaScript
import { generateCombinations } from '../AllCombinationsOfSizeK'
describe('AllCombinationsOfSizeK', () => {
it('should return 3x2 matrix solution for n = 3 and k = 2', () => {
const res = generateCombinations(3, 2)
expect(res).toEqual([
[],
[],
[]
])
})
it('should return 6x2 matrix solution for n = 4 and k = 2', () => {
const res = generateCombinations(4, 2)
expect(res).toEqual([
[],
[],
[],
[],
[],
[]
])
})
})