gepo

541 Reputation

4 Badges

14 years, 205 days

MaplePrimes Activity


These are answers submitted by gepo

to acer:

Yes, it is great.

Thanks so much.

Thanks, acer,

I find another way to solve this problem. here is the way:

> F:=proc(L)

>local LL;

>   LL:=subsop(1=NULL,LL);

>L:=LL;
> end proc:

> L:=[x,y,z,d];
                               L := [x, y, z, d]

>L:= F(L);
                                   [y, z, d]
 >L:= F(L);
                                    [z, d]
 >L:= F(L);
                                      [d]
 >F(L);
                                      []
 

By the way, shy it is evil? if I want to such thing, whether there are other methods that are not evil:)

1 2 3 4 Page 4 of 4