LC: 254. Factor Combinations
https://leetcode.com/problems/factor-combinations/
Input: n = 1
Output: []Input: n = 12
Output: [[2,6],[3,4],[2,2,3]]Input: n = 37
Output: []Input: n = 32
Output: [[2,16],[4,8],[2,2,8],[2,4,4],[2,2,2,4],[2,2,2,2,2]]Last updated