in reply to Re^4: Sorting challenge (Insertion sort)
in thread Sorting challenge
It's possible that the data-set was even designed to make this an issue.
Could be. It is a 'simple' problem that is deceptively hard to accomplish given the constraints. Time in this case.
Howver, I picked another of the easy tasks at random -- namely: TIDRICE -- and submitted the following:
#! perl -slw use strict; ## substitute <DATA> for <> in 3 places to test for( 1 .. <> ) { my %h; for( 1 .. <> ) { $h{ $_->[0] } = $_->[1] for [ split ' ', <> ]; } my $score = 0; /\+/ and ++$score or --$score for values %h; print $score; } __DATA__ 3 4 tilak + tilak + tilak - tilak + 3 ratna + shashi - ratna - 3 bhavani - bhavani + bhavani -
which produces their exact required output from their sample input on my machine; but it is rejected as producing the wrong output.
So, I'm not sure if that means I missed some subtly of the spec. or their testing is flawed.
I haven't reached a conclusion about the site yet. Their UI certainly has some annoyances -- but hell, I've hung around here for 10+ years and this place is far from perfect :)
And one can't but wonder if perlsufi pulled off a very subtle spam with this thread :)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Sorting challenge (Insertion sort)
by davido (Cardinal) on Jul 24, 2013 at 22:27 UTC | |
by BrowserUk (Patriarch) on Jul 24, 2013 at 22:48 UTC | |
|
Re^6: Sorting challenge (Insertion sort)
by choroba (Cardinal) on Jul 24, 2013 at 15:00 UTC | |
by BrowserUk (Patriarch) on Jul 24, 2013 at 15:17 UTC |