One problem is that using delete on arrays leave behind an undef 'placeholder' which mean your scalar @$ref test fails, hence the undef in your result. The fix is to use splice for arrays.

I've always like dispatch tables for this kind of mutual recursion:

#!/usr/bin/perl -w use strict; use Data::Dumper; my %dispatch = ( SCALAR => sub{ return 1; }, ARRAY => sub { my $ref = shift; clean( $ref->[ $_ ] ) or splice @$ref, $_, 1 for reverse 0 .. $#$ref; return 0 unless @$ref; }, HASH => sub { my $ref = shift; my( $key, $val); clean( $val ) or delete $ref->{ $key } while ( $key, $val ) = each %$ref; return 0 unless scalar keys %$ref; }, REF => sub{ my $ref = shift; die "REF: $ref not allowed"; }, CODE => sub{ my $ref = shift; die "CODE: $ref not allowed"; }, '' => sub{ return 1; }, ); sub clean { return $dispatch{ ref $_[0] }->( $_[0] ); } my @array = ( [1], [], { 1 => 2, 2 =>{} } ); clean(\@array); print Dumper(\@array); __END__ $VAR1 = [ [ 1 ], { '1' => 2 } ];

Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
RIP an inspiration; A true Folk's Guy

In reply to Re: Perl task function by BrowserUk
in thread Perl task function by usr345

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.