package
0.0.0-20240804102548-352ddc8ad9e6
Repository: https://github.com/lruggieri/daily-coding-problems.git
Documentation: pkg.go.dev

# README

[Easy]

This problem was asked by Microsoft.

Given a number in the form of a list of digits, return all possible permutations.

For example, given [1,2,3], return

[[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]