// https://www.interviewbit.com/problems/find-permutation/ // https://leetcode.com/articles/find-permutation/# vector Solution::findPerm(const string s, int n) { vector ans(n); int start = 1, e = n; for(int i=0;i