fix some file extensions
This commit is contained in:
parent
68f8f3e56b
commit
f3a896c724
789 changed files with 91 additions and 62 deletions
29
Task/Power-set/CoffeeScript/power-set-2.coffee
Normal file
29
Task/Power-set/CoffeeScript/power-set-2.coffee
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
> coffee power_set.coffee
|
||||
POWER SET of
|
||||
[]
|
||||
POWER SET of 4,2,1
|
||||
[]
|
||||
[ 1 ]
|
||||
[ 2 ]
|
||||
[ 2, 1 ]
|
||||
[ 4 ]
|
||||
[ 4, 1 ]
|
||||
[ 4, 2 ]
|
||||
[ 4, 2, 1 ]
|
||||
POWER SET of dog,c,b,a
|
||||
[]
|
||||
[ 'a' ]
|
||||
[ 'b' ]
|
||||
[ 'b', 'a' ]
|
||||
[ 'c' ]
|
||||
[ 'c', 'a' ]
|
||||
[ 'c', 'b' ]
|
||||
[ 'c', 'b', 'a' ]
|
||||
[ 'dog' ]
|
||||
[ 'dog', 'a' ]
|
||||
[ 'dog', 'b' ]
|
||||
[ 'dog', 'b', 'a' ]
|
||||
[ 'dog', 'c' ]
|
||||
[ 'dog', 'c', 'a' ]
|
||||
[ 'dog', 'c', 'b' ]
|
||||
[ 'dog', 'c', 'b', 'a' ]
|
||||
Loading…
Add table
Add a link
Reference in a new issue