Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 232 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 232 Bytes

Subsequences of string

This problem was asked by Microsoft.

Description

Given a string, generate all possible subsequences of the string.

Example

Input: "xyz"
Output: ["", "x", "y", "z", "xy", "xz", "yz", "xyz"]