|
|
|||||||
============= The Challenge: Linear Pachinko ============= This problem is inspired by Pachinko, a popular game in Japan. A traditional Pachinko machine is a cross between a vertical pinball machine and a slot machine. The player launches small steel balls to the top of the machine using a plunger as in pinball. A ball drops through a maze of pins that deflect the ball, and eventually the ball either exits at a hole in the bottom and is lost, or lands in one of many gates scattered throughout the machine which reward the player with more balls in varying amounts. Players who collect enough balls can trade them in for prizes. For the purposes of this problem, a linear Pachinko machine is a sequence of one or more of the following: holes ("."), floor tiles ("_"), walls ("|"), and mountains ("/\"). A wall or mountain will never be adjacent to another wall or mountain. To play the game, a ball is dropped at random over some character within a machine. A ball dropped into a hole falls through. A ball dropped onto a floor tile stops immediately. A ball dropped onto the left side of a mountain rolls to the left across any number of consecutive floor tiles until it falls into a hole, falls off the left end of the machine, or stops by hitting a wall or mountain. A ball dropped onto the right side of a mountain behaves similarly. A ball dropped onto a wall behaves as if it were dropped onto the left or right side of a mountain, with a 50% chance for each. If a ball is dropped at random over the machine, with all starting positions being equally likely, what is the probability that the ball will fall either through a hole or off an end? For example, consider the following machine, where the numbers just indicate character positions and are not part of the machine itself: Code: 123456789 /\.|__/\. The probabilities that a ball will fall through a hole or off the end of the machine are as follows, by position: 1=100%, 2=100%, 3=100%, 4=50%, 5=0%, 6=0%, 7=0%, 8=100%, 9=100%. The combined probability for the whole machine is just the average, which is approximately 61.111%. A download is available at http://s91376351.onlinehome.us/kixtart/kixgolf_lp.zip ============= Inputs & Outputs ============= Input: The input consists of a linear Pachinko machines, 1–99 characters long Output: For each machine, compute as accurately as possible the probability that a ball will fall through a hole or off the end when dropped at random, then output that percentage truncated to an integer by dropping any fractional part. ======= Scoring ======= The solution must pass all tests in order for it's KiXgolf Score to be considered. When posting KiXtart Golf Scores, please include the KIXGOLF_*.TXT file that is created in the script directory. It contains some basic information about the computer that the script is run on and the resulting scores. ============ Test program ============ Test cases are provided to help screen entries and to provide the Golf Score. Any script that passes the test cases can be submitted. If you are surprised that your solution passed the test cases, please submit it anyway! That will help me identify bugs in the test program. ================================================================ KiXtart GOLF - How To Play ================================================================ Most importantly, anybody can play, no age restrictions, no penalties, no handicap! The object in "real" golf is to hit the ball in the hole in the fewest strokes. The object in KiXtart Golf is to get from input (tee) to target (hole) in the fewest keystrokes. Example: How many positive elements are in array $a? Array $a could be of structure $a=[1, 2 ,-3, 4, -5, -7, 8, 9] One approach: Code: for $b=0 to ubound($a) if $a[$b]>0 $c=$c+1 endif next for a score of 45. Another solution is: Code: DO $b=$b+1 if $a[$b]>0 $c=$c+1 endif UNTIL $b>(UBOUND($a)+1) for a score of 53. Better approach: Code sample 1 ================================================================ KiXtart GOLF - The Rules ================================================================ 1) The goal of KiXtart Golf is to score the lowest strokes. 2) Strokes are all characters in a piece of code except whitespace characters, unless the whitespace character is necessary for the line of code to work. Therefore, carriage returns and line feeds do not count or spaces in between the '=' sign when assigning variables, e.g. '$a = $b' scores 5. 3) Code can be constructed any way you like, as long as it does not generate syntax or other errors when running the script in KiXtart. 4) The final solution MUST pass all test scripts that are part of the KiXtart golf challenge. 7) During the private coding phase, no code is allowed to be posted. Violations result in disqualification of said player. 8) During the public coding phase, code should be posted, reused, and borrowed from other players. 9) The test script contains the official KiXgolf scoring engine 10) Only the person posting a particular score will be recognized for the score, unless the KiXtart Golf Challenge organizer or another delegate posts code on behalf of a player 11) KiXtart Golf (a.k.a KiXgolf) codes must be written inside the KiXgolf UDF collection tags, ';!' and ';!;!' 12) Parameter names of the UDF's can be changed and additional optional parameters can be added. 13) Additional helper UDFs can be written as long as they reside inside the ';!' and ';!;!' tags. 14) The use of '$' as a variable is allowed. 15) The UDF layout is up to coder. 16) The UDF is expected to finish in a reasonable time, that is, on modern computers inside 1 hour timeframe. 17) You can submit scores as often as you want. 18) If you reach leading score, you are obligated to post your score immediately so others can try to compete with you. 19) The UDF may only use the KiXtart/KiXforms commands/functions/macros, no other code fragments are allowed. 20) Calls to COM components that are part of a standard default Windows installation are allowed. 21) The use of the KiXforms DLL is also permitted as the KiXforms DLL can now be considered an integral part of KiXtart scripting. 22) Calls to other executables, as long as they are part of a standard default Windows installation are allowed. 23) The UDF should be self-contained (except for any I/O mentioned in the challenge). In particular, you may not do things like fetching extra data from a remote site or file. 24) You may assume ASCII as character set. 25) You may use block comments as the KiXgolf Scoring Engine now supports block comments. 26) You are allowed to only use publicly available versions of KiXtart and KiXforms, private builds or alpha builds are NOT allowed. 27) Your submitted score must include the result print of the KiXgolf test-engine. 28) The SETOPTION() parameters in the KiXgolf script may not be modified and will govern the script behavior. SETOPTION() parameters may change depending on the particular needs of the KiXgolf challenge. 29) Tokenizing the UDF, script, or portions thereof is not allowed. 30) If something is not explicitly denied by the rules, it's allowed. 31) If Confusion arises, arranger of the KiXgolf round has the final say. 32) Additional test cases can be added during the private round by submitting a proposal for a new test case to the BBS. The proposed test case becomes official once it has been added to the existing test cases and the KiXgolf package has been reposted for download. If new test cases are added within 12 hours of private round end the private round will extend by an additional 24 hours. The public round will then start one day later and also end one day later. Not additional test cases will be added during the public round. ================================================================ KiXtart GOLF - The Duration of the Competition ================================================================ 1) Private coding phase: From date/time of posting the tournament challenge to October 10 6pm EST (BBS+6 time) 2) Public coding phase: From October 10 6EST (BBS+6 time) to October 14 6pm EST (BBS+6 time) 3) Final results: October 15 11pm EST (BBS+6 time) You will need the complete package from http://s91376351.onlinehome.us/kixtart/kixgolf_lp.zip. |
||||||||
|
|
|||||||
Anybody playing already? |
||||||||
|
|
|||||||
Yup |
||||||||
|
|
|||||||
its a pig but: Running Test 1...Done Running Test 2...Done Running Test 3...Done Running Test 4...Done Running Test 5...Done Running Test 6...Done Running Test 7...Done Running Test 8...Done Running Test 9...Done Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/05 23:44:55.092 Processing End = 2007/10/05 23:44:55.123 Duration = 0000/00/00 00:00:00.031 KiXGolf Score = 588 Thank you for participating in KiXtart Golf! Press any key to continue... |
||||||||
|
|
|||||||
Great work Benny - dang - you're just too frickn good at this all this KiX stuff. Congrats on first post points ![]() |
||||||||
|
|
|||||||
thanks doc, ok a little better, but still a pig: Running Test 1...Done Running Test 2...Done Running Test 3...Done Running Test 4...Done Running Test 5...Done Running Test 6...Done Running Test 7...Done Running Test 8...Done Running Test 9...Done Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/06 00:02:00.962 Processing End = 2007/10/06 00:02:00.993 Duration = 0000/00/00 00:00:00.030 KiXGolf Score = 478 Thank you for participating in KiXtart Golf! Press any key to continue... |
||||||||
|
|
|||||||
ok now we are making some progress: Running Test 1...Done Running Test 2...Done Running Test 3...Done Running Test 4...Done Running Test 5...Done Running Test 6...Done Running Test 7...Done Running Test 8...Done Running Test 9...Done Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/06 00:18:14.650 Processing End = 2007/10/06 00:18:14.681 Duration = 0000/00/00 00:00:00.030 KiXGolf Score = 369 Thank you for participating in KiXtart Golf! Press any key to continue... |
||||||||
|
|
|||||||
Not even half way, but I am on the board.... so to speak Code: Your solution failed 5 of 9 tests. KiXtart KiXtart Version = 4.51 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/05 23:51:24.515 Processing End = 2007/10/05 23:51:24.546 Duration = 0000/00/00 00:00:00.031 KiXGolf Score = 770 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
good to see you in it Gar, i gota go to bed, gn |
||||||||
|
|
|||||||
I am headed the same way (the wife is telling me so) |
||||||||
|
|
|||||||
Ahhh, nice, solid, and fast tee-off Dale. I may be having really time this time from tuesday noon on ![]() Well, lets see what I can come up with in the short breaks til then. |
||||||||
|
|
|||||||
Okay, had to at least get it working before bed... ![]() Code: Your solution passed all tests KiXtart KiXtart Version = 4.51 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/06 00:36:00.375 Processing End = 2007/10/06 00:36:00.406 Duration = 0000/00/00 00:00:00.030 KiXGolf Score = 611 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Just an FYI you might be hampering your score possibly by using that version of KiX KiXtart Version = 4.51 |
||||||||
|
|
|||||||
I think I sort of understand the challenge. Will get some groceries, start the washing machine and then see what I can get going. |
||||||||
|
|
|||||||
way to go Gar, for this chalenge that is a pretty good first score |
||||||||
|
|
|||||||
first short break, got the logic, but am far away from first approach. Back to work then ![]() |
||||||||
|
|
|||||||
Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/06 08:27:56.500 Processing End = 2007/10/06 08:27:56.546 Duration = 0000/00/00 00:00:00.045 KiXGolf Score = 544 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Dang Gar your code must be solid to be able to knock off 100, I better get back to it |
||||||||
|
|
|||||||
second short break from work ... pretty traditional approach, no fancy stuff, but hey it works. Running Test 1...Done Running Test 2...Done Running Test 3...Done Running Test 4...Done Running Test 5...Done Running Test 6...Done Running Test 7...Done Running Test 8...Done Running Test 9...Done Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/06 20:54:30.843 Processing End = 2007/10/06 20:54:30.843 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 296 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
btw, is version 4.53 still assumed official, since 4.60 has gone gold (With reported bugs though) ? |
||||||||
|
|
|||||||
you dawg! ![]() |
||||||||
|
|
|||||||
thanx ![]() |
||||||||
|
|
|||||||
re-arranging vars... Running Test 1...Done Running Test 2...Done Running Test 3...Done Running Test 4...Done Running Test 5...Done Running Test 6...Done Running Test 7...Done Running Test 8...Done Running Test 9...Done Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/06 21:32:31.250 Processing End = 2007/10/06 21:32:31.250 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 293 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
This is my very first draft score... lots of room for optimization: Code: Your solution passed all tests KiXtart KiXtart Version = 4.52 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/06 23:06:34.093 Processing End = 2007/10/06 23:06:34.109 Duration = 0000/00/00 00:00:00.016 KiXGolf Score = 444 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Nice first score Roger ![]() |
||||||||
|
|
|||||||
and another 3 strokes... enough for today Running Test 1...Done Running Test 2...Done Running Test 3...Done Running Test 4...Done Running Test 5...Done Running Test 6...Done Running Test 7...Done Running Test 8...Done Running Test 9...Done Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/06 23:26:23.078 Processing End = 2007/10/06 23:26:23.078 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 290 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Jochen you Dawg! your gonna make me work for it arn't you |
||||||||
|
|
|||||||
ok here is a few more: Running Test 1...Done Result... 61 Running Test 2...Done Result... 53 Running Test 3...Done Result... 100 Running Test 4...Done Result... 0 Running Test 5...Done Result... 100 Running Test 6...Done Result... 50 Running Test 7...Done Result... 53 Running Test 8...Done Result... 10 Running Test 9...Done Result... 0 Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/06 16:34:02.072 Processing End = 2007/10/06 16:34:02.103 Duration = 0000/00/00 00:00:00.031 KiXGolf Score = 342 Thank you for participating in KiXtart Golf! Press any key to continue... |
||||||||
|
|
|||||||
now my head hurts: Running Test 1...Done Result... 61 Running Test 2...Done Result... 53 Running Test 3...Done Result... 100 Running Test 4...Done Result... 0 Running Test 5...Done Result... 100 Running Test 6...Done Result... 50 Running Test 7...Done Result... 53 Running Test 8...Done Result... 10 Running Test 9...Done Result... 0 Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/06 17:25:11.956 Processing End = 2007/10/06 17:25:11.987 Duration = 0000/00/00 00:00:00.031 KiXGolf Score = 301 Thank you for participating in KiXtart Golf! Press any key to continue... |
||||||||
|
|
|||||||
k, I'm off to bed, I'll check tomorrow to see who's closing in on the 200 :-)
Nice turnup of players, btw. Good luck, y'all! |
||||||||
|
|
|||||||
forgot an unused var ![]()
|
||||||||
|
|
|||||||
Dang Roger, ![]() ![]() |
||||||||
|
|
|||||||
added some golf-tricks
|
||||||||
|
|
|||||||
you want to lick jochen's wounds? ![]() ![]() |
||||||||
|
|
|||||||
DOH! ![]() |
||||||||
|
|
|||||||
-k- I think I'll leave it at this for tonight and let you guys catch up first ![]() Your solution passed all tests KiXtart KiXtart Version = 4.52 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/07 01:14:02.218 Processing End = 2007/10/07 01:14:02.218 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = <font color="red">268</font> Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Ok, one more, I wouldn't want to be accused of holding back scores ![]()
|
||||||||
|
|
|||||||
can't...stop...must...sleep... Your solution passed all tests KiXtart KiXtart Version = 4.52 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/07 01:39:07.156 Processing End = 2007/10/07 01:39:07.171 Duration = 0000/00/00 00:00:00.015 KiXGolf Score = 217 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Quote: Rule 26) You are allowed to only use publicly available versions of KiXtart and KiXforms, private builds or alpha builds are NOT allowed. Thus, you can use 4.60 or 4.53 or 4.00 or whatever other 4.x version you dig out. Who knows, maybe one of the versions contains a bug/feature that shaves off characters that other versions don't have ![]() |
||||||||
|
|
|||||||
Wow, nice start! I knew this would happen as my approach IS very conventional ![]() Er, what is with my wounds ? ![]() |
||||||||
|
|
|||||||
anyway, back in the race... Running Test 1...Done Running Test 2...Done Running Test 3...Done Running Test 4...Done Running Test 5...Done Running Test 6...Done Running Test 7...Done Running Test 8...Done Running Test 9...Done Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/07 08:45:43.906 Processing End = 2007/10/07 08:45:43.953 Duration = 0000/00/00 00:00:00.047 KiXGolf Score = 280 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Running Test 1...Done Running Test 2...Done Running Test 3...Done Running Test 4...Done Running Test 5...Done Running Test 6...Done Running Test 7...Done Running Test 8...Done Running Test 9...Done Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/07 09:39:39.531 Processing End = 2007/10/07 09:39:39.562 Duration = 0000/00/00 00:00:00.030 KiXGolf Score = 274 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
pfft... Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/07 11:29:00.968 Processing End = 2007/10/07 11:29:01.000 Duration = 0000/00/00 00:00:00.031 KiXGolf Score = 272 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Hah! Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/07 11:43:14.296 Processing End = 2007/10/07 11:43:14.328 Duration = 0000/00/00 00:00:00.031 KiXGolf Score = 265 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
|
||||||||
|
|
|||||||
Arrrgh ![]() |
||||||||
|
|
|||||||
broke 200 ![]()
|
||||||||
|
|
|||||||
OMG!!! Wow, congrats Rogier! 68 strokes to go for me then ![]() |
||||||||
|
|
|||||||
Gotta break with that traditional approach, Jochen ![]() |
||||||||
|
|
|||||||
Yup, will have to start from scratch to go beyond the 200 frontier ![]() |
||||||||
|
|
|||||||
|
||||||||
|
|
|||||||
|
||||||||
|
|
|||||||
Current standing: Code: DrillSergeant 188 Jochen 265 Benny69 301 Gargoyle 544 |
||||||||
|
|
|||||||
I must say that I must be doing things way to traditionally. Every time I find a way to reduce the code, I break it. And that was only go to get me to 410, still more than twice what Sarge has at this point. Think that maybe my box is to big, and therefore I can't see the outside of it. ![]() |
||||||||
|
|
|||||||
Gargoyle, Do not try and follow the ball... that's impossible. Instead only try to realize the truth: There is no ball. ![]() |
||||||||
|
|
|||||||
|
||||||||
|
|
|||||||
Jeez, are we now getting into KiXgolf Zen: Quote: Do not try and follow the ball... that's impossible. Instead only try to realize the truth: There is no ball What's KiXgolf Zen Level 2 then? "Do not follow the code...<breath in>...just realize there is no code...<breath out>...just random characters" |
||||||||
|
|
|||||||
A Participation point sounds good to me ![]() ![]() Quote: Your solution failed 4 of 9 tests. KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 01:41:23.912 Processing End = 2007/10/08 01:41:23.943 Duration = 0000/00/00 00:00:00.030 KiXGolf Score = 370 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
So does failing 9 out of 9 count too ? |
||||||||
|
|
|||||||
Originally Posted By: NTDOC So does failing 9 out of 9 count too ? That's what I got. Nothing that makes any sense running yet. No time yesterday (d#mn those birthdays ![]() ![]() ![]() |
||||||||
|
|
|||||||
Originally Posted By: Sealeopard Jeez, are we now getting into KiXgolf Zen: Quote: Do not try and follow the ball... that's impossible. Instead only try to realize the truth: There is no ball What's KiXgolf Zen Level 2 then? "Do not follow the code...<breath in>...just realize there is no code...<breath out>...just random characters" LOL ![]() |
||||||||
|
|
|||||||
Damn, I have got to go to bed... 4:20am here... BUT must post before doing so! Finally! Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 04:14:40.675 Processing End = 2007/10/08 04:14:40.721 Duration = 0000/00/00 00:00:00.046 KiXGolf Score = 486 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Originally Posted By: NTDOC So does failing 9 out of 9 count too ? Doc, For a participation point, just the line: $a=0 will give you only 7 of 9 failures ![]() |
||||||||
|
|
|||||||
Originally Posted By: Sealeopard Jeez, are we now getting into KiXgolf Zen: Quote: Do not try and follow the ball... that's impossible. Instead only try to realize the truth: There is no ball What's KiXgolf Zen Level 2 then? "Do not follow the code...<breath in>...just realize there is no code...<breath out>...just random characters" You get used to it. I don't even see the code. All I see is blonde, brunette, red-head. |
||||||||
|
|
|||||||
this one was a brunette... Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 10:38:30.359 Processing End = 2007/10/08 10:38:30.406 Duration = 0000/00/00 00:00:00.047 KiXGolf Score = 260 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
retracting a structural change no longer needed brings another 2 ... Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 10:52:04.406 Processing End = 2007/10/08 10:52:04.453 Duration = 0000/00/00 00:00:00.046 KiXGolf Score = 258 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Roger you are too funny "There is no Ball", HA! I am amazed, you broke the 200 mark, and what is even more crazy, your times are zero! If I have any chance to catch up I am gonna have to re-think this all together. Jochen you keep Roger busy and I will sneak up from behind and thump him on the head, with any luck he will forget how to play and start adding strokes to his code ![]() |
||||||||
|
|
|||||||
I'll try, actually I am in the middle of an entirely new approach, including fancy undocumented features and a vast amount of voodoo magic... too bad I am over 200 with it as well ![]() [edit] Crap, I wanted too keep my post #5000 for posting that 150 score ![]() |
||||||||
|
|
|||||||
* wakes up * huh??? what was I doing?? Oh, yeah... * HaHaHa, I'm leaving them all behind!!! ![]() Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 11:14:21.875 Processing End = 2007/10/08 11:14:21.890 Duration = 0000/00/00 04:33:59.014 KiXGolf Score = 3176 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
big fat ROFL ![]() |
||||||||
|
|
|||||||
Congrats Jochen! You might be just 82 points behind me, I'm a whopping 4166 posts behind you! |
||||||||
|
|
|||||||
Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 15:13:45.562 Processing End = 2007/10/08 15:13:45.578 Duration = 0000/00/00 00:00:00.016 KiXGolf Score = 173 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 15:19:33.593 Processing End = 2007/10/08 15:19:33.609 Duration = 0000/00/00 00:00:00.015 KiXGolf Score = 171 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
OMG! ROFLMAO! Roger no one can acuse you of being a spoiled sport, this stuff makes this all the more fun, you guys are alright. ![]() congrats Jochen on the 5k |
||||||||
|
|
|||||||
Now the brunette is gone left only random characters ![]() Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 16:48:46.421 Processing End = 2007/10/08 16:48:46.437 Duration = 0000/00/00 00:00:00.015 KiXGolf Score = 246 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Yay! Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 17:00:26.609 Processing End = 2007/10/08 17:00:26.625 Duration = 0000/00/00 00:00:00.016 KiXGolf Score = 242 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 11:07:19.692 Processing End = 2007/10/08 11:07:19.801 Duration = 0000/00/00 00:00:00.108 KiXGolf Score = 357 |
||||||||
|
|
|||||||
Nice one, Allen! From 486 to 357 just after a night of sleep. |
||||||||
|
|
|||||||
Thanks Serg. Actually, I've only slept about 2 hours ![]() Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 11:21:55.023 Processing End = 2007/10/08 11:21:55.055 Duration = 0000/00/00 00:00:00.031 KiXGolf Score = 350 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Originally Posted By: Allen Actually, I've only slept about 2 hours ![]() Damn, with only two hours of sleep I wouldn't even know how to put my pants back on, let alone golf down 129 points. ![]() |
||||||||
|
|
|||||||
Nice one Allen, now get a grip and slash off another 180 ![]() Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 18:08:02.125 Processing End = 2007/10/08 18:08:02.125 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 234 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 18:52:26.421 Processing End = 2007/10/08 18:52:26.421 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 225 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Damn Jochen, you're making pretty big jumps there. Should I be getting worried? (I am, btw ;)) |
||||||||
|
|
|||||||
Well, yes and no. I gave up with the new approach and instead reworked my initial 'conventional' one. I was surprised how much there still was to shave. On the other side it will probably not go beneath 200. In the mean time it looks really like random characters ![]() |
||||||||
|
|
|||||||
Oh, btw... ![]() Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 19:50:33.765 Processing End = 2007/10/08 19:50:33.765 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 221 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
whoops, I forgot Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 19:58:58.843 Processing End = 2007/10/08 19:58:58.843 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 220 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Starting to look like a blonde with a nice rack, jochen? ![]() |
||||||||
|
|
|||||||
rather a car accident, why? Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 20:19:31.359 Processing End = 2007/10/08 20:19:31.359 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 219 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 15:19:27.903 Processing End = 2007/10/08 15:19:27.934 Duration = 0000/00/00 00:00:00.031 KiXGolf Score = 334 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
getting harder each stroke ![]() Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 21:49:17.468 Processing End = 2007/10/08 21:49:17.468 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 217 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Now, this one was fun ![]() Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 21:54:23.484 Processing End = 2007/10/08 21:54:23.484 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 208 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Originally Posted By: Jochen getting harder each stroke ![]() ehm... ![]() |
||||||||
|
|
|||||||
Quote: getting harder each stroke With all my bloat, (Right Now) I have no idea whay you guys are talking about. ![]() Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 16:11:41.682 Processing End = 2007/10/08 16:11:41.713 Duration = 0000/00/00 00:00:00.031 KiXGolf Score = 308 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Allen: Only 8 to go for 3rd place, only 101 to go for 2nd. Keep 'em coming. Rogier: lol, didn't recognize the pitfall :p |
||||||||
|
|
|||||||
Originally Posted By: Jochen Allen: Only 8 to go for 3rd place, only 101 to go for 2nd. Keep 'em coming. Hmmm, are you saying Rogier has nothing to worry about. ![]() |
||||||||
|
|
|||||||
Jooel maybe, but somehow he's missing in action?! |
||||||||
|
|
|||||||
Yawn. Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 20:27:20.474 Processing End = 2007/10/08 20:27:20.503 Duration = 0000/00/00 00:00:00.028 KiXGolf Score = 283 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
LOL - Nice going there Allen. Glad to see you're getting it down good. |
||||||||
|
|
|||||||
Jooel just sent me an IM, he' still working on the bruenette but will have time for a hole-in-one shortly ![]() |
||||||||
|
|
|||||||
And I am just going to sit here with my 544, and wait for the public round and see what other approaches there were. As I still see the ball. |
||||||||
|
|
|||||||
Take pride Gargs. You made a working solution, and personally, I think that is the hardest part sometimes. Just ask Doc what his score is ![]() |
||||||||
|
|
|||||||
Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/08 23:31:25.720 Processing End = 2007/10/08 23:31:25.751 Duration = 0000/00/00 00:00:00.031 KiXGolf Score = 270 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Originally Posted By: Allen Just ask Doc what his score is ![]() Terrible, I've only really tried one Golf and that was the Aztec counting one. Learned some neat stuff but without the help of Allen I would not have gotten off the ground. Often I just don't seem to have the vision for this Golf stuff. I can code okay in general but I suppose without seeing the real life use, need, method I can't seem to get started so out of frustration I normally don't bother. i.e. If I can't get some useful results within like 20 minutes then I lose the drive to keep going on it as I find other things to occupy time on the computer. So, congrats Garg I think you're doing a great job, just hang in there. |
||||||||
|
|
|||||||
Current Standings: Code: Drillsergeant 171 Jochen 208 Allen 270 Benny 301 Gargoyle 544 |
||||||||
|
|
|||||||
Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/09 12:23:51.718 Processing End = 2007/10/09 12:23:51.734 Duration = 0000/00/00 00:00:00.015 KiXGolf Score = 167 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
I'm dying to see that code of yours Rogier ![]() Well, now that my 70-290 exam is done (and passed), I may have my head free for some serious stroke-shaving ![]() |
||||||||
|
|
|||||||
Congratulations on your exam! I'm going to get recertified soon too. My MCSE NT4 doesn't impress many people anymore ![]() |
||||||||
|
|
|||||||
Dang! I go to work for just one day and now I feel like the kid left behind in the parking lot for school field trip. |
||||||||
|
|
|||||||
Originally Posted By: Jochen Well, now that my 70-290 exam is done (and passed), I may have my head free for some serious stroke-shaving ![]() Better build up a bigger gap ![]() Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/09 13:47:49.937 Processing End = 2007/10/09 13:47:49.953 Duration = 0000/00/00 00:00:00.016 KiXGolf Score = 163 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Originally Posted By: DrillSergeant My MCSE NT4 doesn't impress many people anymore ![]() Same goes for mine ![]() edit: Damn you did it again ![]() ![]() |
||||||||
|
|
|||||||
47 ![]() Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/09 14:17:57.218 Processing End = 2007/10/09 14:17:57.218 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 161 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
I should learn to keep my mouth shut ![]() |
||||||||
|
|
|||||||
Originally Posted By: Jochen I should learn to keep my mouth shut ![]() LOL! |
||||||||
|
|
|||||||
Since it's so quiet in here... Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/09 14:34:02.450 Processing End = 2007/10/09 14:34:02.481 Duration = 0000/00/00 00:00:00.031 KiXGolf Score = 260 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Originally Posted By: DrillSergeant Congratulations on your exam! I'm going to get recertified soon too. My MCSE NT4 doesn't impress many people anymore ![]() Congrats Jochen. You too. Yeah my MCSE NT4 just doesn't seem to impress anyone either ![]() |
||||||||
|
|
|||||||
Quit holding back Allen. Just take the day off and slam some code down ![]() |
||||||||
|
|
|||||||
awfully quiet in here... Jooel? Mart? Where are you guys??? |
||||||||
|
|
|||||||
still here just been work busy |
||||||||
|
|
|||||||
Arrgh, my new approach ![]() Your solution failed 1 of 9 tests. KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/10 13:49:05.593 Processing End = 2007/10/10 13:49:05.593 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 192 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Sarg, Quote from the shoutbox as a reply on Gargoyle. Quote: Break the 500 barrier? I'd be happy to get something going that makes any sense. All I got is crap up until now. And crap it is. Tried several different approaches but all crashed and burned killing all passengers and crew. I guess I'll wait for the public round all my stuff up until now leads nowhere and does not do what it should do. I’m not sure but I suspect Jooel to be cooking up a 10 character stinker and post it like one minute before this round ends. |
||||||||
|
|
|||||||
But you should post at least one of your failure scores to get a participation point or else all your work would have been for nothing... |
||||||||
|
|
|||||||
Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/10 09:08:37.510 Processing End = 2007/10/10 09:08:37.541 Duration = 0000/00/00 00:00:00.030 KiXGolf Score = 232 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Originally Posted By: DrillSergeant But you should post at least one of your failure scores to get a participation point or else all your work would have been for nothing... I'm ashamed to post my 1200 plus codes that is failing all tests ![]() BTW: This is the first golf round that I tried to get a solution for. It’s just like dating don’t try to get to second or third base on the first date. Always start easy and relaxed ![]() |
||||||||
|
|
|||||||
Gawd, Now that I have my 192 score script pass all tests, it seems to be constructed to fit the given cases. If I change case 7 to this: Quote: [Test 7] Input=_|.|_|_|_|.|_ Output=38 it fails ![]() Edit: My 208 score script is of course bullet proof ![]() |
||||||||
|
|
|||||||
Originally Posted By: Jochen If I change case 7 to this: Quote: [Test 7] Input=_|.|_|_|_|.|_ Output=38 it fails ![]() Works fine for me ![]() |
||||||||
|
|
|||||||
Originally Posted By: Mart I'm ashamed to post my 1200 plus codes that is failing all tests ![]() LOL, I understand that feeling ![]() |
||||||||
|
|
|||||||
ok added Jochen's Test as Test 10 Code: [Test 1] Input=/\.|__/\. Output=61 [Test 2] Input=_._/\_|.__/\./\_ Output=53 [Test 3] Input=... Output=100 [Test 4] Input=___ Output=0 [Test 5] Input=./\. Output=100 [Test 6] Input=_/\_ Output=50 [Test 7] Input=_|.|_|.|_|.|_ Output=53 [Test 8] Input=____|_____ Output=10 [Test 9] Input=___________________________________________________________________________________________________ Output=0 [Test 10] Input=_|.|_|_|_|.|_ Output=38 Running Test 1...Done Result... 61 Running Test 2...Done Result... 53 Running Test 3...Done Result... 100 Running Test 4...Done Result... 0 Running Test 5...Done Result... 100 Running Test 6...Done Result... 50 Running Test 7...Done Result... 53 Running Test 8...Done Result... 10 Running Test 9...Done Result... 0 Running Test 10...Done Result... 38 Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/10 08:46:09.254 Processing End = 2007/10/10 08:46:09.301 Duration = 0000/00/00 00:00:00.046 KiXGolf Score = 294 Thank you for participating in KiXtart Golf! Press any key to continue... |
||||||||
|
|
|||||||
Originally Posted By: DrillSergeant Originally Posted By: Jochen If I change case 7 to this: Quote: [Test 7] Input=_|.|_|_|_|.|_ Output=38 it fails ![]() Works fine for me ![]() It is sooo disturbing that you have managed this with 161 strokes ![]() I can't get a handling for 'walls' without 'hills' in my new approach, still fails case 7 with in the mean time 189. ![]() |
||||||||
|
|
|||||||
Running Test 1...Done Result=61 Running Test 2...Done Result=53 Running Test 3...Done Result=100 Running Test 4...Done Result=0 Running Test 5...Done Result=100 Running Test 6...Done Result=50 Running Test 7...Done Result=53 Running Test 8...Done Result=10 Running Test 9...Done Result=0 Running Test 10...Done Result=38 Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/10 15:55:48.953 Processing End = 2007/10/10 15:55:48.968 Duration = 0000/00/00 00:00:00.014 KiXGolf Score = 161 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
alright, just to verify that my scoring code is bullet proof: Running Test 1...Done 61 Running Test 2...Done 53 Running Test 3...Done 100 Running Test 4...Done 0 Running Test 5...Done 100 Running Test 6...Done 50 Running Test 7...Done 53 Running Test 8...Done 10 Running Test 9...Done 0 Running Test 10...Done 38 Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/10 15:58:12.578 Processing End = 2007/10/10 15:58:12.593 Duration = 0000/00/00 00:00:00.014 KiXGolf Score = 208 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Jochen, If your 192 code works with the 'official' ini file, that's a valid score, so you can run with that, unless Jens will recognize the extra test as a nice addition in which case he can add it to the official ini. If he will add it, it would be nice for you guys, because then the deadline will be moved to 24 hours later, which gives y'all more time to catch up. ![]() Either way is no problem for me, so it's up to Jens I guess... |
||||||||
|
|
|||||||
Running Test 1... 61/61 Running Test 2... 53/53 Running Test 3... 100/100 Running Test 4... 0/0 Running Test 5... 100/100 Running Test 6... 50/50 Running Test 7... 53/53 Running Test 8... 10/10 Running Test 9... 0/0 Running Test 10... 38/38 Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/10 10:46:52.413 Processing End = 2007/10/10 10:46:52.413 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 231 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
This new 38% Test 10 will be added to the official package. The private round will be extended by 24 hours. A new official package will be posted once I'm home, which should be around 10pm EST. |
||||||||
|
|
|||||||
Well, this is bad news for me as my 2nd place seems to melt faster recently. But as the last extension was to my advantage I won't get grumpy about it ![]() |
||||||||
|
|
|||||||
Originally Posted By: Jochen Well, this is bad news for me as my 2nd place seems to melt faster recently. But as the last extension was to my advantage I won't get grumpy about it ![]() and because you're the one that introduced it! ![]() |
||||||||
|
|
|||||||
Did I ? ![]() |
||||||||
|
|
|||||||
anyway ![]() Running Test 1...Done 61 Running Test 2...Done 53 Running Test 3...Done 100 Running Test 4...Done 0 Running Test 5...Done 100 Running Test 6...Done 50 Running Test 7...Done 53 Running Test 8...Done 10 Running Test 9...Done 0 Running Test 10...Done 38 Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/10 20:31:22.750 Processing End = 2007/10/10 20:31:22.750 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 202 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
FINALLY!!!! ![]() Running Test 1...Done 61 Running Test 2...Done 53 Running Test 3...Done 100 Running Test 4...Done 0 Running Test 5...Done 100 Running Test 6...Done 50 Running Test 7...Done 53 Running Test 8...Done 10 Running Test 9...Done 0 Running Test 10...Done 38 Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/10 20:40:50.359 Processing End = 2007/10/10 20:40:50.359 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 197 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
congrats on the 200 border! ![]() And without taking any duration time too! I guess you're on the same track as I am, so it's just a matter of time now... Now, who should be grumpy about the extra 24 hours??? ![]() |
||||||||
|
|
|||||||
Thanx, we may be not on the same tracks as I am back at my intial 'conventional' approach, which looks rather like a brunette than a car accident again ![]() Running Test 1...Done 61 Running Test 2...Done 53 Running Test 3...Done 100 Running Test 4...Done 0 Running Test 5...Done 100 Running Test 6...Done 50 Running Test 7...Done 53 Running Test 8...Done 10 Running Test 9...Done 0 Running Test 10...Done 38 Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/10 21:38:42.859 Processing End = 2007/10/10 21:38:42.859 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 192 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
![]() |
||||||||
|
|
|||||||
Wow mate, looks like a tranny to me ![]() |
||||||||
|
|
|||||||
LMAO yeah, it's me on the weekends ![]() |
||||||||
|
|
|||||||
Well I finally broke the 500 mark Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/10 14:57:11.562 Processing End = 2007/10/10 14:57:11.625 Duration = 0000/00/00 00:00:00.063 KiXGolf Score = 490 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
way to go Gar |
||||||||
|
|
|||||||
Still don't know how to get rid of the other 300 strokes to win ![]() |
||||||||
|
|
|||||||
Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/10 16:14:34.109 Processing End = 2007/10/10 16:14:34.171 Duration = 0000/00/00 00:00:00.062 KiXGolf Score = 481 |
||||||||
|
|
|||||||
New package including the new test 10 has been posted. Private round deadline is now October 11 and public round deadline is now October 15. |
||||||||
|
|
|||||||
Running Test 1...Done 61 Running Test 2...Done 53 Running Test 3...Done 100 Running Test 4...Done 0 Running Test 5...Done 100 Running Test 6...Done 50 Running Test 7...Done 53 Running Test 8...Done 10 Running Test 9...Done 0 Running Test 10...Done 38 Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/11 09:00:48.671 Processing End = 2007/10/11 09:00:48.671 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 190 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Running Test 1...Done 61 Running Test 2...Done 53 Running Test 3...Done 100 Running Test 4...Done 0 Running Test 5...Done 100 Running Test 6...Done 50 Running Test 7...Done 53 Running Test 8...Done 10 Running Test 9...Done 0 Running Test 10...Done 38 Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/11 09:11:24.734 Processing End = 2007/10/11 09:11:24.734 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 186 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
There is no spoon. So we can just leave the spoon code out ![]() Running Test 1...Done 61 Running Test 2...Done 53 Running Test 3...Done 100 Running Test 4...Done 0 Running Test 5...Done 100 Running Test 6...Done 50 Running Test 7...Done 53 Running Test 8...Done 10 Running Test 9...Done 0 Running Test 10...Done 38 Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/11 09:17:40.578 Processing End = 2007/10/11 09:17:40.578 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 181 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
That's looking great Jochen but Jooel asked me to post his tomorrow as he is busy at work and won't have time. 139 |
||||||||
|
|
|||||||
We're playing poker again? ![]() |
||||||||
|
|
|||||||
KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/10 15:17:11.302 Processing End = 2007/10/10 15:17:11.625 Duration = 0000/00/00 00:00:00.323 KiXGolf Score = 139 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Can you post the complete result using the latest official package (10 test cases) ? We somehow like to see the 'Your solution passed all tests' line |
||||||||
|
|
|||||||
in the mean time: Running Test 1...Done 61 Running Test 2...Done 53 Running Test 3...Done 100 Running Test 4...Done 0 Running Test 5...Done 100 Running Test 6...Done 50 Running Test 7...Done 53 Running Test 8...Done 10 Running Test 9...Done 0 Running Test 10...Done 38 Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/11 10:23:49.296 Processing End = 2007/10/11 10:23:49.296 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 179 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Running Test 1...Done 61 Running Test 2...Done 53 Running Test 3...Done 100 Running Test 4...Done 0 Running Test 5...Done 100 Running Test 6...Done 50 Running Test 7...Done 53 Running Test 8...Done 10 Running Test 9...Done 0 Running Test 10...Done 38 Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/11 10:46:49.609 Processing End = 2007/10/11 10:46:49.609 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 177 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Only just got time to look at this this morning. Not as tricky as I thought it would be, without any golfing i get: Quote: Running Test 1...Done Running Test 2...Done Running Test 3...Done Running Test 4...Done Running Test 5...Done Running Test 6...Done Running Test 7...Done Running Test 8...Done Running Test 9...Done Running Test 10...Done Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/11 10:11:59.570 Processing End = 2007/10/11 10:11:59.585 Duration = 0000/00/00 00:00:00.014 KiXGolf Score = 196 Thank you for participating in KiXtart Golf! Not sure if I'm going to have time to golf the code down. |
||||||||
|
|
|||||||
I'm just playing with you Jochen. Don't have any code from Jooel. Spoke with him and he said he is busy at work and may not have time to play. You're doing great. Almost caught up to Rogier. ![]() |
||||||||
|
|
|||||||
Whoa dude! You really got me with this, nice one ![]() Richard: What do you think you're doing here, eh?? Coming along in the extension time, initially posting a score that is way below anything I had for days and telling us that it is not tricky? Bold! ![]() |
||||||||
|
|
|||||||
Damn, that extra day is going to kill me! ![]() Nah, I'm glad it's given some people some time to jump onto the bandwagon too ![]() Doc, you realy had me going there too! ![]() |
||||||||
|
|
|||||||
Originally Posted By: Jochen There is no spoon. So we can just leave the spoon code out ![]() I imagine that right now, you're feeling a bit like Alice. Hmm? Tumbling down the rabbit hole? |
||||||||
|
|
|||||||
I may have crossed the border from Wonderland to Otherland already ![]() |
||||||||
|
|
|||||||
Current standings: Code: DrillSergeant 161 Jochen 177 Richard H. 196 Allen 231 Benny69 294 Gargoyle 481 |
||||||||
|
|
|||||||
Apologies for the sneaky entry. Gotta heavy schedule at the moment, but I gave myself a couple of hours off for good behaviour and thought I'd participate as a way of relaxing. I'm sure that you've already realised that once you have thought around the problem the low scoring code pretty much writes itself. With most of these golf tournaments the real gains are not so much in the coding but in the approach ![]() One last shot, but I have to get back to the boring stuff now... Quote: KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/11 11:03:42.361 Processing End = 2007/10/11 11:03:42.376 Duration = 0000/00/00 00:00:00.014 KiXGolf Score = 185 |
||||||||
|
|
|||||||
Originally Posted By: Richard H. With most of these golf tournaments the real gains are not so much in the coding but in the approach ![]() So true, my basic approach from score 444 to 161 didn't change, but if you start out with a wrong aproach it's a devil to change your thinking to come up with another approach. Good to see you joined up, Richard! Good luck with the boring stuff ![]() |
||||||||
|
|
|||||||
tick, tock, tick, tock, gentlemen ![]() http://www.timeanddate.com/counters/full...our=6pm&p0=179' |
||||||||
|
|
|||||||
Prefer this format meself: http://www.timeanddate.com/counters/fullscreen.html?mode=a&year=2007&month=10&day=11&hour=6pm&p0=179 |
||||||||
|
|
|||||||
Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/11 14:45:34.265 Processing End = 2007/10/11 14:45:34.281 Duration = 0000/00/00 00:00:00.016 KiXGolf Score = 160 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
![]() |
||||||||
|
|
|||||||
![]() Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/11 14:56:36.718 Processing End = 2007/10/11 14:56:36.734 Duration = 0000/00/00 00:00:00.015 KiXGolf Score = 152 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
![]() ![]() ![]() |
||||||||
|
|
|||||||
Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/11 09:21:10.074 Processing End = 2007/10/11 09:21:10.074 Duration = 0000/00/00 00:00:00.000 KiXGolf Score = 229 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/11 14:20:07.383 Processing End = 2007/10/11 14:20:07.399 Duration = 0000/00/00 00:00:00.015 KiXGolf Score = 182 |
||||||||
|
|
|||||||
![]() |
||||||||
|
|
|||||||
Quote: I'm sure that you've already realised that once you have thought around the problem the low scoring code pretty much writes itself. "There is no ball", "The code writes itself". GAHH! You guys SUCK! Looking forward to seeing this. |
||||||||
|
|
|||||||
Originally Posted By: Allen Quote: I'm sure that you've already realised that once you have thought around the problem the low scoring code pretty much writes itself. "There is no ball", "The code writes itself". GAHH! You guys SUCK! LMFAO!!! ![]() ![]() |
||||||||
|
|
|||||||
Well, I didn't expect the code to work, but it did. It's now at the stage where I'm beginning to have trouble working out what is going on! Running Test 1...Done Running Test 2...Done Running Test 3...Done Running Test 4...Done Running Test 5...Done Running Test 6...Done Running Test 7...Done Running Test 8...Done Running Test 9...Done Running Test 10...Done Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.53 KiXGolf Script = kixgolf_lp.KIX KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/11 14:42:02.430 Processing End = 2007/10/11 14:42:02.445 Duration = 0000/00/00 00:00:00.014 KiXGolf Score = 174 Thank you for participating in KiXtart Golf! |
||||||||
|
|
|||||||
![]() |
||||||||
|
|
|||||||
Wow! From zero to second place in a day! ![]() |
||||||||
|
|
|||||||
Ok, 8 hours left, 26 to go for Rogier, only 4 for Richard. Got an appointment with the Doctor next, but will return to the battle for the last 5 hours or so. Cya |
||||||||
|
|
|||||||
Allen thinks... damn, there went 3rd Jochen thinks... damn, there went 2nd (ain't that extra 24 hours a bitch?) Rogier thinks... self writing code... you better get on a diet quick. |
||||||||
|
|
|||||||
Originally Posted By: DrillSergeant Wow! From zero to second place in a day! ![]() I quite agree with Rogier, but tell me, why does it take so freaking long to complete? 486 Processor??? ![]() |
||||||||
|
|
|||||||
alright, 'm back. already spent 20 minutes ... anything I try raises the score ![]() |
||||||||
|
|
|||||||
final hour: http://www.timeanddate.com/counters/fullscreen.html?mode=a&year=2007&month=10&day=11&hour=6pm&p0=179 I'm going to sleep, I'll post my code 8 hours from now ![]() |
||||||||
|
|
|||||||
I give up! I won't be able to shave those 4 strokes left for 2nd Place, congrats Richard ![]() Right, as I have scheduled an ambulatory surgery (Meniscus) tomorrow before noon, I will at least miss the first day of public round ![]() I'll try to post my code tomorrow morning though ![]() G'night Gentlemen |
||||||||
|
|
|||||||
Running Test 1...Done Result... 61 Running Test 2...Done Result... 53 Running Test 3...Done Result... 100 Running Test 4...Done Result... 0 Running Test 5...Done Result... 100 Running Test 6...Done Result... 50 Running Test 7...Done Result... 53 Running Test 8...Done Result... 10 Running Test 9...Done Result... 0 Running Test 10...Done Result... 38 Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/11 16:43:22.853 Processing End = 2007/10/11 16:43:22.885 Duration = 0000/00/00 00:00:00.031 KiXGolf Score = 289 Thank you for participating in KiXtart Golf! Press any key to continue... |
||||||||
|
|
|||||||
Running Test 1...Done Result... 61 Running Test 2...Done Result... 53 Running Test 3...Done Result... 100 Running Test 4...Done Result... 0 Running Test 5...Done Result... 100 Running Test 6...Done Result... 50 Running Test 7...Done Result... 53 Running Test 8...Done Result... 10 Running Test 9...Done Result... 0 Running Test 10...Done Result... 38 Your solution passed all tests Your solution passed all tests KiXtart KiXtart Version = 4.60 KiXGolf Script = kixgolf_lp.kix KiXGolf Scoring Engine Scoring Engine = 3.3 KiXtart Golf Score Tournament = Linear Pachinko Processing Start = 2007/10/11 18:04:08.992 Processing End = 2007/10/11 18:04:09.148 Duration = 0000/00/00 00:00:00.156 KiXGolf Score = 288 Thank you for participating in KiXtart Golf! Press any key to continue... |
||||||||
|
|
|||||||
The private round is now closed. Please continue in the public round by posting your code. |