New character?
Yay, hooray, the black kitten is back. Good job
- Dhokarena56
- Posts:28
- Joined:Wed Dec 12, 2007 2:14 am
- Location:Under the sofa
- Tom Flapwell
- Posts:5465
- Joined:Wed Feb 23, 2005 1:48 pm
- Location:DC
- Contact:
I'm not sure if Dhokarena was talking about Stevie or Mu-nan.
See other much-maligned creatures in my webcomic: http://downscale.comicgenesis.com
- Dhokarena56
- Posts:28
- Joined:Wed Dec 12, 2007 2:14 am
- Location:Under the sofa
- A dude named Vince
- Posts:1143
- Joined:Fri Jul 13, 2007 2:20 am
- Location:If I told you, I'd have to kill you.
-
- Posts:384
- Joined:Sun Nov 11, 2007 10:51 pm
The black cat is Stevie. We have seen him before. I think he even wore the same shirt.
Also, the little puzzle in Extreme-Speed's signature:
To make this sentence true, the number of times we see 1 is _____, 2 is _____, 3 is _____, 4 is _____, and 5 is _____.
It can be answered with "one, one, one, one, and one," because if you spell it out, you only see "1" one time, "2" one time, "3" one time, "4" one time, and "5" one time. If you try to use the actual digits, it gets tricky.
Also, the little puzzle in Extreme-Speed's signature:
To make this sentence true, the number of times we see 1 is _____, 2 is _____, 3 is _____, 4 is _____, and 5 is _____.
It can be answered with "one, one, one, one, and one," because if you spell it out, you only see "1" one time, "2" one time, "3" one time, "4" one time, and "5" one time. If you try to use the actual digits, it gets tricky.
Quoth the spotted fox: <b>*yerf*</b>
You usually
have to take what people say
with a grain of salt.
(or in cases like
mine, a shaker or two may
yield the best result.)
むらがあるフォックス
If you miss my old sigs...
You usually
have to take what people say
with a grain of salt.
(or in cases like
mine, a shaker or two may
yield the best result.)
むらがあるフォックス
If you miss my old sigs...
3, 2, 3, 1, 1. Wrote a dumb brute-force Perl script to solve it.Also, the little puzzle in Extreme-Speed's signature:
To make this sentence true, the number of times we see 1 is _____, 2 is _____, 3 is _____, 4 is _____, and 5 is _____.
It can be answered with "one, one, one, one, and one," because if you spell it out, you only see "1" one time, "2" one time, "3" one time, "4" one time, and "5" one time. If you try to use the actual digits, it gets tricky.
Code: Select all
my $n = 6;
for my $one (1..$n) {
for my $two (1..$n) {
for my $three (1..$n) {
for my $four (1..$n) {
for my $five (1..$n) {
my @t = (0, 1, 1, 1, 1, 1);
$t[$_] += 1 for (0, $one, $two, $three, $four, $five);
if (($t[1] == $one)
&& ($t[2] == $two)
&& ($t[3] == $three)
&& ($t[4] == $four)
&& ($t[5] == $five)) {
print "$one, $two, $three, $four, $five\n";
exit(0);
} # if
} # for
} # for
} # for
} # for
} # for
print "Unsolvable for n(1,$n)\n";
exit(1);
Who is online
Users browsing this forum: No registered users and 20 guests