Feature Request : Function for finding all possible combinations of given string.
mahesh1996 opened this issue · 4 comments
mahesh1996 commented
For e.g.
If the input is "wxyz" then the output of the string should be
['w','wx','wxy','wxyz','wxz','wy','wyz','wz','x','xy','xyz','xz','y','yz','z']
panzerdp commented
Hey @mahesh1996,
Can you let me know the use cases in web development of such a function?
Thanks.
mahesh1996 commented
In web development, generally it is not needed. But it might be useful for specific purpose if backend is made in javascript (node js).
Thanks @panzerdp
panzerdp commented
The application of such a function is for very limited situations.
For now I am not interested to add it to the library.
Thanks for your time @mahesh1996.
mahesh1996 commented
Thank you.