Skip to content

jutzyn/CompleteSet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

This is a temporary mini-program to demo how to get the complete sets of given elements, and the element used in the program is the letter,
for examples, if given three element {"a", "b", "c"}, then this program will output as following:
 { a }
 { b }
 { c }
 { a b }
 { b c }
 { a c }
 { a b c}
 
 Which denotes the all subsets of any combination of given elements (a, b, c),  the function is implemented as a recursive function.
 Thanks.

About

To list all subset for given single element group

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages