Jump to content

Build Theme!
  •  
  • Infected?

WE'RE SURE THAT YOU'LL LOVE US!

Hey there! :wub: Looks like you're enjoying the discussion, but you're not signed up for an account. When you create an account, we remember exactly what you've read, so you always come right back where you left off. You also get notifications, here and via email, whenever new posts are made. You can like posts to share the love. :D Join 93116 other members! Anybody can ask, anybody can answer. Consistently helpful members may be invited to become staff. Here's how it works. Virus cleanup? Start here -> Malware Removal Forum.

Try What the Tech -- It's free!


Photo

Monday Madness


  • Please log in to reply
31 replies to this topic

#16 Tomk

Tomk

    Beguilement Monitor

  • Global Moderator
  • 20,451 posts

Posted 19 October 2010 - 06:36 AM

@Tom, can you split these into different threads like that in MWR?


Sure. Next week I'll start a new thread instead of adding on to this one.
Tomk
------------------------------------------------------------
Microsoft MVP 2010-2014
 

    Advertisements

Register to Remove


#17 terry1966

terry1966

    SuperMember

  • Visiting Tech
  • PipPipPipPipPip
  • 2,988 posts

Posted 19 October 2010 - 04:26 PM

well done raktor.. :thumbup: i'm in the middle of writing a bash script to work it out, just never really written any before(nearly 30yrs since i did any programming), so taking me a lot longer to get it working because i have no idea of the correct syntax, etc.. :pullhair: if i ever get it working i'll post it tho. :rofl: :popcorn:

Edited by terry1966, 19 October 2010 - 04:26 PM.


#18 terry1966

terry1966

    SuperMember

  • Visiting Tech
  • PipPipPipPipPip
  • 2,988 posts

Posted 20 October 2010 - 12:44 PM

well it sort of works.. :rofl:

output..
Wed Oct 20 19:23:41 BST 2010
Wed Oct 20 19:24:11 BST 2010
Wed Oct 20 19:24:43 BST 2010
Wed Oct 20 19:25:14 BST 2010
Wed Oct 20 19:25:30 BST 2010
453x6=2718 correct
Wed Oct 20 19:25:44 BST 2010
Wed Oct 20 19:26:12 BST 2010
582x3=1746 correct
Wed Oct 20 19:26:16 BST 2010
Wed Oct 20 19:26:48 BST 2010
Wed Oct 20 19:27:20 BST 2010
Wed Oct 20 19:27:55 BST 2010

now my first ever bash script
#!/bin/bash
function debit {
l=8
echo "before -" $y
y=$(($y-$l))
echo "after -"$y"---"$l
}
#===============================================================================
===================
function add {
t=$(($t+1))
}
#===============================================================================
===================
function check {
t=0;q=0;o=0;y=0;j=0;x=0
for j in $a $b $c $d $e $f $g $h; do
x[q]=$j
#echo ${x[q]} >> sumtest.txt
q=$(($q+1))
done
for q in 0 1 2 3 4 5 6 7; do
for o in 1 2 3 4 5 6 7; do
y=$(($q+$o))
if [ $y > $7 ]
then debit; fi
if [ ${x[q]} = ${x[$y]} ]
then add; fi
#echo $q $y" compare "${x[q]}" to "${x[$y]}"--loop--"$o"--count--"$t >> sumtest.txt
done;done
if [ $t = 0 ];then date >> sumtest.txt;echo $a$b$c"x"$d"="$e$f$g$h "correct" >> sumtest.txt; fi
}
#===============================================================================
==================
date >> sumtest.txt
for a in 1 2 3 4 5 6 7 8; do
for b in 1 2 3 4 5 6 7 8; do
for c in 1 2 3 4 5 6 7 8; do
for d in 1 2 3 4 5 6 7 8; do
for e in 1 2 3 4 5 6 7 8; do
for f in 1 2 3 4 5 6 7 8; do
for g in 1 2 3 4 5 6 7 8; do
for h in 1 2 3 4 5 6 7 8; do
k=$(($a$b$c*$d));s=$e$f$g$h;
if [ $s = $k ]
then check; fi
done;done;done;done;done;done;done;date >> sumtest.txt;done

now for the problem in it..
if [ $y > $7 ]
then debit; fi
no matter what i did(spent about 10 hrs trial and error on it) i just could find a way to do a simple "if number => 7 then delete 8 from it"

so got lucky anyway and it gave up the correct two solutions.. :rofl:

no where near as elegant or efficient as your coding raktor, :thumbup:
takes about 4 1/2 minutes to complete on my machine, but it got the job 9/10's done.. :rofl:

right off to bed to get some sleep now.

:popcorn:

#19 inzanity

inzanity

    ♠♠lost♠♠

  • Malware Team
  • 2,340 posts

Posted 20 October 2010 - 07:01 PM

takes about 4 1/2 minutes to complete on my machine

that's quite long, though don't know anything about bash scripts :)

did this in delphi, it took about 35 ms to spit out the output.
excerp (as the entire code is really bad), took 8 digits taken 4 at a time for permutaion then took those first 3 digits multiplied to the fourth digit, after that, time to remove the items with zero's, nine's and duplicates:
s2 := StringReplace(s, ',', '', [rfReplaceAll]);
	  prod := StrToInt(Copy(s2, 1, 3)) * StrToInt(Copy(s2, 4, 1));
	  s3 := Copy(s2, 4, 1);
	  s2 := Copy(s2, 1, 3) + ' * ' + Copy(s2, 4, 1) + ' = ' + IntToStr(prod);
	  s4 := Copy(s2, 1, 3) + s3 + IntToStr(prod);

	  if Length(IntToStr(prod)) = 4 then
	  begin
		  // remove 0
		  if Pos('0', Copy(s2, 1, 3) + s3 + IntToStr(prod)) = 0 then
		 begin
		 	// remove the first char
			if Pos(Copy(Copy(s2, 1, 3) + s3 + IntToStr(prod), 1, 1), Copy(Copy(s2, 1, 3) + s3 + IntToStr(prod), 2, Length(Copy(s2, 1, 3) + s3 + IntToStr(prod)))) = 0 then
			begin
				// remove the 2nd char
			   if Pos(Copy(s4, 2, 1), Copy(s4, 1, 1) + Copy(s4, 3, length(s4))) = 0 then
			   begin
			   	// remove the 3nd char
				   if Pos(Copy(s4, 3, 1), Copy(s4, 1, 2) + Copy(s4, 4, length(s4))) = 0 then
				  begin
					  // remove the 4th char
					   if Pos(Copy(s4, 4, 1), Copy(s4, 1, 3) + Copy(s4, 5, length(s4))) = 0 then
					 begin
					 	// remove the 5th char
						   if Pos(Copy(s4, 5, 1), Copy(s4, 1, 4) + Copy(s4, 6, length(s4))) = 0 then
						begin
							// remove the 6th char
							   if Pos(Copy(s4, 6, 1), Copy(s4, 1, 5) + Copy(s4, 7, length(s4))) = 0 then
						   begin
						   	// remove the 7th char
								   if Pos(Copy(s4, 7, 1), Copy(s4, 1, 6) + Copy(s4, 8, length(s4))) = 0 then
							  begin
								  // remove the 8th char
									   if Pos(Copy(s4, 8, 1), Copy(s4, 1, 7)) = 0 then
								 begin
								 	// remove number 9
												if Pos('9', s4) = 0 then
												  memo1.lines.add(s2);
								 end; // 8
							  end; // 7
						   end; // 6
						end; // 5
					 end; // 4
				  end; // 3
			   end; // 2
			end; // 1
		 end; // 0
	  end;
	end;

Proud graduate of WTT Classroom


The help we provide here is free, however, if you wish to donate, you can do so here: http://www.whatthetech.com/donate/

ASAP and UNITE member

________________________________________________


!


#20 Tomk

Tomk

    Beguilement Monitor

  • Global Moderator
  • 20,451 posts

Posted 20 October 2010 - 07:14 PM

Each of those "codes" look like fun... if I understood what they were doing. :notworthy: However... for a silly game... I can solve it in my head faster than I can type all of that code. :wacko: (I wrote a few programs in basica back in the early 80's - figuring out how many yards of dirt would have to be moved/imported/hauled away on a site to build the grade, or I had one that I could input parameters of a wall and it would give me a printout with number and length of all the studs, trimmers, cripples, headers and plates - these were pretty simple compared to what you guys have done. I always kind of wished I had the time to figure out how to write something real)
Tomk
------------------------------------------------------------
Microsoft MVP 2010-2014
 

#21 inzanity

inzanity

    ♠♠lost♠♠

  • Malware Team
  • 2,340 posts

Posted 20 October 2010 - 07:17 PM

However... for a silly game... I can solve it in my head faster than I can type all of that code. :wacko:

If I do that, I'd go nuts! :lol:

Proud graduate of WTT Classroom


The help we provide here is free, however, if you wish to donate, you can do so here: http://www.whatthetech.com/donate/

ASAP and UNITE member

________________________________________________


!


#22 Tomk

Tomk

    Beguilement Monitor

  • Global Moderator
  • 20,451 posts

Posted 20 October 2010 - 07:41 PM

It's not that bad. You know it won't be multiplied by one - so try two. You know that nothing multiplied by two gets you to twenty so you know that the first of the 4 in the answer must be one. Therefore the first of the three must be 5,6,7,or 8 If you try 8 in the ones place of the three, you get a 6 in the ones place of the 4 try 7 in the tens place of the three and you get a 5 in the tens place of the 4 Therefore you know this wont work because 5,6,7, and 8 have all been used. So try 7 in the ones place of the three getting a 4 in the ones of the 4 if 8 can't be in the tens because 7 has been already used try 6 and you get 3 in the tens of the 4 Now you know this won't work because there is know combo to use the 8 Try 6 in the ones of the 3 and get 2 in the ones of the 4 Therefore this is wrong because 2 has been used Can't be 5 in ones because 0 not allowed 4 would give 8 in ones Can't be 7, 6, 5 or 4 in tens because 4, and 2 have been used and 0 not allowed 3 would fit giving 6 but leaving 5 and 7 for hundreds place which obviously won't work 3 in ones would give 6 in ones therefore 8 can't be in tens try 7 for 4 in tens Neither 8 nor 5 will work in hundreds 2 is already used and you know where 1 must be so obviously 2 cannot be the multiplier. You don't have to actually do all the iterations that are possible. Your code has to because it doesn't know when to give up on each try.
Tomk
------------------------------------------------------------
Microsoft MVP 2010-2014
 

#23 inzanity

inzanity

    ♠♠lost♠♠

  • Malware Team
  • 2,340 posts

Posted 20 October 2010 - 07:46 PM

You confuse me :lol:

Proud graduate of WTT Classroom


The help we provide here is free, however, if you wish to donate, you can do so here: http://www.whatthetech.com/donate/

ASAP and UNITE member

________________________________________________


!


#24 terry1966

terry1966

    SuperMember

  • Visiting Tech
  • PipPipPipPipPip
  • 2,988 posts

Posted 20 October 2010 - 11:24 PM

mine computes every combination from 11111111 through to 88888888
any time ???x?=???? it goes off to check if there are any duplicate numbers in it, if no, then it outputs answer,
if yes, and after no, it goes off to find more correct answers until every combination is worked through..
that's the reason why it takes so long.

not the most efficient way of doing things but gets the job done.. :rofl:

just wish i could figure out how to compare a changing variable $y to the number 7 and if greater go and take 8 away from it(needed to keep it checking correct array number) to stop it spitting out errors when run.. :pullhair:

something so simple but i just couldn't figure out how do it..(yet anyway, might do some googling and fix it later)

:popcorn:

finally fixed it..
l=7
if [ $y -gt $l ]
then debit; fi
now runs no errors..
time to bin it now and see if i can do better.. :rofl:

Edited by terry1966, 21 October 2010 - 01:16 AM.


#25 Tomk

Tomk

    Beguilement Monitor

  • Global Moderator
  • 20,451 posts

Posted 21 October 2010 - 10:43 PM

Alright you script wizards... I couldn't help myself this evening. I had to try to code the solution.

Seeing as how I don't know any code... I went for JavaScript.

I was right... I can solve it faster in my head. It took me almost two hours to make this work.

Now remember... no points are given for being pretty. It does output the correct answers in about a 1.5 seconds +/-.

<html>
<body>

<script type="text/javascript">
for (a = 2; a <= 8; a++)
{
	 for (b = 1; b <= 8; b++)
	 {

			   if (b==a)
					{
					continue;
					}

		  for (c = 1; c <= 8; c++)
		  {

			   if (c==a)
					{
					continue;
					} 
			   if (c==b)
					{
					continue;
					}

			  for (d = 1; d <= 8; d++)
			   {

			   if (d==a)
					{
					continue;
					}
			   if (d==b)
					{
					continue;
					}
			   if (d==c)
					{
					continue;
					}

			   x=(a*((b*100)+(c*10)+d))
			   y=((b*100)+(c*10)+d)

x1=(Math.floor(x/1000))
			   if (x1==a)
					{
					continue;
					}
			   if (x1==b)
					{
					continue;
					}
			   if (x1==c)
					{
					continue;
					}
			   if (x1==d)
					{
					continue;
					}
			   if (x1==0)
					{
					continue;
					}
			   if (x1==9)
					{
					continue;
					}

x2=(Math.floor((x-(x1*1000))/100))
			   if (x2==a)
					{
					continue;
					}
			   if (x2==b)
					{
					continue;
					}
			   if (x2==c)
					{
					continue;
					}
			   if (x2==d)
					{
					continue;
					}
			   if (x2==x1)
					{
					continue;
					}
			   if (x2==0)
					{
					continue;
					}
			   if (x2==9)
					{
					continue;
					}

x3=(Math.floor((x-(x1*1000)-(x2*100))/10))
			   if (x3==a)
					{
					continue;
					}
			   if (x3==b)
					{
					continue;
					}
			   if (x3==c)
					{
					continue;
					}
			   if (x3==d)
					{
					continue;
					}
			   if (x3==x1)
					{
					continue;
					}
			   if (x3==x2)
					{
					continue;
					}
			   if (x3==0)
					{
					continue;
					}
			   if (x3==9)
					{
					continue;
					}
x4=(Math.floor((x-(x1*1000)-(x2*100)-(x3*10))))
			   if (x4==a)
					{
					continue;
					}
			   if (x4==b)
					{
					continue;
					}
			   if (x4==c)
					{
					continue;
					}
			   if (x4==d)
					{
					continue;
					}
			   if (x4==x1)
					{
					continue;
					}
			   if (x4==x2)
					{
					continue;
					}
			   if (x4==x3)
					{
					continue;
					}
			   if (x4==0)
					{
					continue;
					}
			   if (x4==9)
					{
					continue;
					}

document.write(x + " x " + a + " = " + y);
document.write("<br />");

					
			   }
		  }
	 }
}
</script>

</body>
</html>

Tomk
------------------------------------------------------------
Microsoft MVP 2010-2014
 

    Advertisements

Register to Remove


#26 Tomk

Tomk

    Beguilement Monitor

  • Global Moderator
  • 20,451 posts

Posted 22 October 2010 - 04:22 PM

I can't help myself. :wacko:

I got to thinking about that code... and had to clean it up.

<html>
<body>

<script type="text/javascript">

for (a = 2; a <= 8; a++)
{
	 for (b = 1; b <= 8; b++)
	 {
			   if (b==a)
					{
					continue;
					}

		  for (c = 1; c <= 8; c++)
		  {

			   if ((c==a)||(c==b))
					{
					continue;
					}
			  
			  for (d = 1; d <= 8; d++)
			   {

			   if ((d==a)||(d==b)||(d==c))
					{
					continue;
					}
			   
			   x=(a*((b*100)+(c*10)+d))
			   y=((b*100)+(c*10)+d)

x1=(Math.floor(x/1000))
			   if ((x1==a)||(x1==b)||(x1==c)||(x1==d)||(x1==0)||(x1==9))
					{
					continue;
					}

x2=(Math.floor((x-(x1*1000))/100))
			   if ((x2==a)||(x2==b)||(x2==c)||(x2==d)||(x2==x1)||(x2==0)||(x2==9))
					{
					continue;
					}
			   
x3=(Math.floor((x-(x1*1000)-(x2*100))/10))
			   if ((x3==a)||(x3==b)||(x3==c)||(x3==d)||(x3==x1)||(x3==x2)||(x3==0)||(x3==9))
					{
					continue;
					}
			   
x4=(Math.floor((x-(x1*1000)-(x2*100)-(x3*10))))
			   if ((x4==a)||(x4==b)||(x4==c)||(x4==d)||(x4==x1)||(x4==x2)||(x4==x3)||(x4==0)||(x4==9))
					{
					continue;
					}
			   
document.write(x + " x " + a + " = " + y);
document.write("<br />");

					
			   }
		  }
	 }
}
</script>

</body>
</html>

Tomk
------------------------------------------------------------
Microsoft MVP 2010-2014
 

#27 inzanity

inzanity

    ♠♠lost♠♠

  • Malware Team
  • 2,340 posts

Posted 23 October 2010 - 07:14 AM

You learn fast! :) How about making it so that's flexible? :notworthy:

Proud graduate of WTT Classroom


The help we provide here is free, however, if you wish to donate, you can do so here: http://www.whatthetech.com/donate/

ASAP and UNITE member

________________________________________________


!


#28 Tomk

Tomk

    Beguilement Monitor

  • Global Moderator
  • 20,451 posts

Posted 23 October 2010 - 07:55 AM

How about making it so that's flexible?


Don't know what you mean? :unsure:
Tomk
------------------------------------------------------------
Microsoft MVP 2010-2014
 

#29 inzanity

inzanity

    ♠♠lost♠♠

  • Malware Team
  • 2,340 posts

Posted 23 October 2010 - 08:02 AM

That it's not constrained with ??? x ? = ???? but can also be used with something like ??? X ? = ????? or ???? x ? = ??? or something like that. :)

Proud graduate of WTT Classroom


The help we provide here is free, however, if you wish to donate, you can do so here: http://www.whatthetech.com/donate/

ASAP and UNITE member

________________________________________________


!


#30 Tomk

Tomk

    Beguilement Monitor

  • Global Moderator
  • 20,451 posts

Posted 23 October 2010 - 08:28 AM

???? x ? = ???

Really? I don't think that can be done with whole numbers.

??? X ? = ?????

This would take 9 integers and we only have 8
Tomk
------------------------------------------------------------
Microsoft MVP 2010-2014
 

Related Topics



2 user(s) are reading this topic

0 members, 2 guests, 0 anonymous users