I have a string lets say 123
I need Output as
1,2,3,12,23,13,123 .
I know this can be achieved using Dynamic programming . So I need help.
The Length of the input string is in the range 10 ^ 6 .
Variation of this question : My next problem is
I have to only print those subsets where digits are consecutive.So now my answer becomes
1,2,3,12,23,123 . NOTE : 13 doesnt appear here as 1 and 3 are not consecutive in the input string "123".
If not Dynamic Programming any other solution is also OK . Just remember that length of input string is 10^6 , so solution should be O(length)
tail . sortBy (comparing length) . subsequences. – Frerich Raabe Dec 19 '11 at 12:17