Sealeopard
(KiX Master)
2008-12-08 04:04 AM
KiXgolf - Easier Done Than Said

=============
The Challenge - Easier Done Than Said
=============


Password security is a tricky thing. Users prefer simple passwords that are easy to remember (like buddy), but such passwords are often insecure. Some sites use random computer-generated passwords (like xvtpzyo), but users have a hard time remembering them and sometimes leave them written on notes stuck to their computer. One potential solution is to generate "pronounceable" passwords that are relatively secure but still easy to remember.

FnordCom is developing such a password generator. You work in the quality control department, and it's your job to test the generator and make sure that the passwords are acceptable. To be acceptable, a password must satisfy these three rules:
1. It must contain at least one vowel.
2. It cannot contain three consecutive vowels or three consecutive consonants.
3. It cannot contain two consecutive occurrences of the same letter, except for 'ee' or 'oo'.

(For the purposes of this problem, the vowels are 'a', 'e', 'i', 'o', and 'u'; all other letters are consonants.) Note that these rules are not perfect; there are many common/pronounceable words that are not acceptable.

You therefore write a function that accepts the potential password as an input and generates an output as follows: password enclosed in angled brackets followed by either the text " is acceptable." or " is not acceptable.". Thus, a password of "a" would generate an output of "<a> is acceptable."

A download is available at http://s91376351.onlinehome.us/kixtart/kixgolf_edts.zip

=============
Inputs & Outputs
=============


The input consists of a potential password. Each password is at least one and at most twenty letters long and consists only of lowercase letters.

For each password, output whether or not it is acceptable, using the precise format shown in the example.

=======
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 and code 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: 2008-12-07 to 2008-12-12

2) Public coding phase: 2008-12-13 to 2009-01-09

3) Final results: 2009-01-10

You will need the complete package from http://s91376351.onlinehome.us/kixtart/kixgolf_edts.zip.


Gargoyle
(MM club member)
2008-12-08 06:55 AM
Re: KiXgolf - Easier Done Than Said

In the download Test 5 has a typo in it.

DrillSergeant
(MM club member)
2008-12-08 11:23 AM
Re: KiXgolf - Easier Done Than Said

It's my honour to Tee off first \:\)
 Code:

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows XP Professional
CPU              =               Intel(R) Pentium(R) D CPU 2.80GHz
Speed            = 2793 MHz
Memory           = 1008 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/08 11:20:44.296
Processing End   = 2008/12/08 11:20:44.343
Duration         = 0000/00/00 00:00:00.046
KiXGolf Score    = 360
 
Thank you for participating in KiXtart Golf!


DrillSergeant
(MM club member)
2008-12-08 12:42 PM
Re: KiXgolf - Easier Done Than Said

Cleanup:


 Code:

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows XP Professional
CPU              =               Intel(R) Pentium(R) D CPU 2.80GHz
Speed            = 2793 MHz
Memory           = 1008 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/08 12:41:38.368
Processing End   = 2008/12/08 12:41:38.414
Duration         = 0000/00/00 00:00:00.045
KiXGolf Score    = 266
 
Thank you for participating in KiXtart Golf!


DrillSergeant
(MM club member)
2008-12-08 01:25 PM
Re: KiXgolf - Easier Done Than Said

a bit more....

 Code:

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows XP Professional
CPU              =               Intel(R) Pentium(R) D CPU 2.80GHz
Speed            = 2793 MHz
Memory           = 1008 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/08 13:24:53.287
Processing End   = 2008/12/08 13:24:53.334
Duration         = 0000/00/00 00:00:00.047
KiXGolf Score    = 256
 
Thank you for participating in KiXtart Golf!


Gargoyle
(MM club member)
2008-12-08 01:30 PM
Re: KiXgolf - Easier Done Than Said

Currently at 671 with some major issue (failing 8 of 8)

But must quit golf and go to work. More tonight


DrillSergeant
(MM club member)
2008-12-08 02:00 PM
Re: KiXgolf - Easier Done Than Said

-k-, I'll also get back to work now :-)
 Code:

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows XP Professional
CPU              =               Intel(R) Pentium(R) D CPU 2.80GHz
Speed            = 2793 MHz
Memory           = 1008 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/08 13:51:53.747
Processing End   = 2008/12/08 13:51:53.794
Duration         = 0000/00/00 00:00:00.046
KiXGolf Score    = 252
 
Thank you for participating in KiXtart Golf!


Benny69
(MM club member)
2008-12-08 02:08 PM
Re: KiXgolf - Easier Done Than Said

Dang Drill!

Sealeopard
(KiX Master)
2008-12-08 02:33 PM
Re: KiXgolf - Easier Done Than Said

Yeah, sorry about that. Test 5 has indeed a typo. The password to test for is "zoggax".

I'll upload a corrected package tonight but feel free to correct the .INI file.


DrillSergeant
(MM club member)
2008-12-08 04:33 PM
Re: KiXgolf - Easier Done Than Said

Ok, last one for today:

 Code:

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows XP Professional
CPU              = Intel(R) Pentium(R) D CPU 2.80GHz
Speed            = 2793 MHz
Memory           = 1008 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/08 16:13:34.933
Processing End   = 2008/12/08 16:13:34.949
Duration         = 0000/00/00 00:00:00.016
KiXGolf Score    = 244
 
Thank you for participating in KiXtart Golf!


AllenAdministrator
(KiX Supporter)
2008-12-08 08:38 PM
Re: KiXgolf - Easier Done Than Said

Is it against the rules to ask why my output is failing all the tests, when it appears to be right?

 Quote:

<a> is acceptable.
<tv> is not acceptable.
<ptoui> is not acceptable.
<bontres> is not acceptable.
<zoggax> is not acceptable.
<wiinq> is not acceptable.
<eep> is acceptable.
<houctuh> is acceptable.


AllenAdministrator
(KiX Supporter)
2008-12-08 09:08 PM
Re: KiXgolf - Easier Done Than Said

Well I found the solution to my question... the function name is not "a" anymore... I thought that was a rule change some time back as to not penalize people.

With that fixed, my next issue comes with the CaseSenitivity being set to on. I can change my code to work around this, but what's the value here when in the rules its stated all potential passwords "consists only of lowercase letters"


AllenAdministrator
(KiX Supporter)
2008-12-08 09:18 PM
Re: KiXgolf - Easier Done Than Said

Its REALLY ugly, but its on the board.


Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_edts.KIX

Computer
OS = Windows Vista Business Edition
CPU = AMD Athlon(tm) 64 X2 Dual Core Processor 5000+
Speed = 2605 MHz
Memory = 4094 MB

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Easier Done Than Said?
Processing Start = 2008/12/08 15:15:18.530
Processing End = 2008/12/08 15:15:21.665
Duration = 0000/00/00 00:00:03.135
KiXGolf Score = 656

Thank you for participating in KiXtart Golf!


AllenAdministrator
(KiX Supporter)
2008-12-08 09:25 PM
Re: KiXgolf - Easier Done Than Said

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows Vista Business Edition
CPU              = AMD Athlon(tm) 64 X2 Dual Core Processor 5000+
Speed            = 2605 MHz
Memory           = 4094 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/08 15:24:03.077
Processing End   = 2008/12/08 15:24:06.261
Duration         = 0000/00/00 00:00:03.184
KiXGolf Score    = 611

Thank you for participating in KiXtart Golf!


DrillSergeant
(MM club member)
2008-12-08 10:39 PM
Re: KiXgolf - Easier Done Than Said

two more...

 Code:

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows Vista Business Edition
CPU              = Intel Pentium Model 15
Speed            = 2194 MHz
Memory           = 2038 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/08 22:32:43.275
Processing End   = 2008/12/08 22:32:43.298
Duration         = 0000/00/00 00:00:00.023
KiXGolf Score    = 242
 
Thank you for participating in KiXtart Golf!


I've got an MS exam 70-297 planned for this friday, and instead of studying I'm golfing...


AllenAdministrator
(KiX Supporter)
2008-12-08 10:52 PM
Re: KiXgolf - Easier Done Than Said

GEEZ. I might find another 100 or so strokes, but not 400. I think I know the better way to do it, but it so eludes me on how to do it. (sigh) \:\(

DrillSergeant
(MM club member)
2008-12-08 11:19 PM
Re: KiXgolf - Easier Done Than Said

Last one for tonight...

 Code:

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows Vista Business Edition
CPU              = Intel Pentium Model 15
Speed            = 2194 MHz
Memory           = 2038 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/08 23:16:29.088
Processing End   = 2008/12/08 23:16:29.120
Duration         = 0000/00/00 00:00:00.031
KiXGolf Score    = 236
 
Thank you for participating in KiXtart Golf!



Gargoyle
(MM club member)
2008-12-09 01:25 AM
Re: KiXgolf - Easier Done Than Said

Just to get on the green's

Your solution failed 2 of 8 tests.
 Code:

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows XP Media Center Edition
CPU              =               Intel(R) Pentium(R) 4 CPU 3.00GHz
Speed            = 3000 MHz
Memory           = 2048 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/08 17:10:19.844
Processing End   = 2008/12/08 17:10:19.860
Duration         = 0000/00/00 00:00:00.016
KiXGolf Score    = 665
 
Thank you for participating in KiXtart Golf!


Benny69
(MM club member)
2008-12-09 02:45 AM
Re: KiXgolf - Easier Done Than Said

ok its bit of a pig but:

 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows Vista Ultimate Edition
CPU              =               Intel(R) Pentium(R) D CPU 2.80GHz
Speed            = 2793 MHz
Memory           = 2048 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/08 19:47:17.120
Processing End   = 2008/12/08 19:47:17.145
Duration         = 0000/00/00 00:00:00.025
KiXGolf Score    = 454

Thank you for participating in KiXtart Golf!
Press any key to continue...


Benny69
(MM club member)
2008-12-09 03:01 AM
Re: KiXgolf - Easier Done Than Said

ok 1 more for the night: 428
 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows Vista Ultimate Edition
CPU              =               Intel(R) Pentium(R) D CPU 2.80GHz
Speed            = 2793 MHz
Memory           = 2048 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/08 20:03:21.570
Processing End   = 2008/12/08 20:03:21.597
Duration         = 0000/00/00 00:00:00.026
KiXGolf Score    = 428

Thank you for participating in KiXtart Golf!
Press any key to continue...


AllenAdministrator
(KiX Supporter)
2008-12-09 04:09 AM
Re: KiXgolf - Easier Done Than Said

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows Vista Business Edition
CPU              = AMD Athlon(tm) 64 X2 Dual Core Processor 5000+
Speed            = 2605 MHz
Memory           = 4094 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/08 22:07:14.833
Processing End   = 2008/12/08 22:07:18.039
Duration         = 0000/00/00 00:00:03.206
KiXGolf Score    = 593

Thank you for participating in KiXtart Golf!


AllenAdministrator
(KiX Supporter)
2008-12-09 04:32 AM
Re: KiXgolf - Easier Done Than Said

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows Vista Business Edition
CPU              = AMD Athlon(tm) 64 X2 Dual Core Processor 5000+
Speed            = 2605 MHz
Memory           = 4094 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/08 22:30:56.097
Processing End   = 2008/12/08 22:30:59.178
Duration         = 0000/00/00 00:00:03.081
KiXGolf Score    = 578

Thank you for participating in KiXtart Golf!


Sealeopard
(KiX Master)
2008-12-09 05:53 AM
Re: KiXgolf - Easier Done Than Said

I posted a corrected version of the .INI file. Sorry about that.

DrillSergeant
(MM club member)
2008-12-09 09:14 AM
Re: KiXgolf - Easier Done Than Said

Crawling towards 200...

 Code:

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows XP Professional
CPU              = Intel(R) Pentium(R) D CPU 2.80GHz
Speed            = 2793 MHz
Memory           = 1008 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/09 09:11:57.484
Processing End   = 2008/12/09 09:11:57.500
Duration         = 0000/00/00 00:00:00.016
KiXGolf Score    = 229
 
Thank you for participating in KiXtart Golf!


Gargoyle
(MM club member)
2008-12-09 01:13 PM
Re: KiXgolf - Easier Done Than Said

And now for cleanup, and I have a long way to go to catch up..
 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows XP Media Center Edition
CPU              =               Intel(R) Pentium(R) 4 CPU 3.00GHz
Speed            = 3000 MHz
Memory           = 2048 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/09 05:11:22.310
Processing End   = 2008/12/09 05:11:34.544
Duration         = 0000/00/00 00:00:12.234
KiXGolf Score    = 855

Thank you for participating in KiXtart Golf!


Gargoyle
(MM club member)
2008-12-09 01:23 PM
Re: KiXgolf - Easier Done Than Said

Closer only another 400 to go
 Code:
Done
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows XP Media Center Edition
CPU              =               Intel(R) Pentium(R) 4 CPU 3.00GHz
Speed            = 3000 MHz
Memory           = 2048 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/09 05:21:49.919
Processing End   = 2008/12/09 05:21:49.950
Duration         = 0000/00/00 00:00:00.030
KiXGolf Score    = 692

Thank you for participating in KiXtart Golf!


Gargoyle
(MM club member)
2008-12-09 01:29 PM
Re: KiXgolf - Easier Done Than Said

One more before going to work...
 Code:
Done
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows XP Media Center Edition
CPU              =               Intel(R) Pentium(R) 4 CPU 3.00GHz
Speed            = 3000 MHz
Memory           = 2048 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/09 05:27:45.013
Processing End   = 2008/12/09 05:27:45.044
Duration         = 0000/00/00 00:00:00.031
KiXGolf Score    = 622


Mart
(KiX Supporter)
2008-12-09 01:37 PM
Re: KiXgolf - Easier Done Than Said

Up until now.

 Code:
1st: Sarg 	- 229
2nd: Benny	- 428
3RD: Allen	- 578
4th: Gargoyle	- 622


[edit]
Me - Nothing.
Too busy with other stuff to worry about this challenge but nevertheless thanks for the message Jens.
[/edit]


JochenAdministrator
(KiX Supporter)
2008-12-09 01:46 PM
Re: KiXgolf - Easier Done Than Said

Oh Hai,

seems simple enough, but atm I cannot even imagine how Sarge did this low score... No score from me in sight very soon anyway.


DrillSergeant
(MM club member)
2008-12-09 02:20 PM
Re: KiXgolf - Easier Done Than Said

I guess I'm just lucky I started out on the right track. If you start out with a method that's around 600 points, it's very difficult to completely erase that from your mind and think of another way. (I speak from personal experience ;-))

But I'm also still waiting for Lonk or Remco to come in and dive below the 200 marker.

Remco had an 10-day extendend holiday in Thailand (because of the closed down airport), but I expect he'll be around soon :-)


Gargoyle
(MM club member)
2008-12-09 02:29 PM
Re: KiXgolf - Easier Done Than Said

One more before heading out
 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows XP Media Center Edition
CPU              =               Intel(R) Pentium(R) 4 CPU 3.00GHz
Speed            = 3000 MHz
Memory           = 2048 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/09 06:27:37.685
Processing End   = 2008/12/09 06:27:37.716
Duration         = 0000/00/00 00:00:00.030
KiXGolf Score    = 557

Thank you for participating in KiXtart Golf!


Benny69
(MM club member)
2008-12-09 03:36 PM
Re: KiXgolf - Easier Done Than Said

ok, after a little thinking and alot of re-re-re-work: 322
 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows Vista Business Edition
CPU              =               Intel(R) Pentium(R) D CPU 3.20GHz
Speed            = 3200 MHz
Memory           = 2046 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/09 08:34:09.213
Processing End   = 2008/12/09 08:34:09.229
Duration         = 0000/00/00 00:00:00.015
KiXGolf Score    = 322

Thank you for participating in KiXtart Golf!
Press any key to continue...


DrillSergeant
(MM club member)
2008-12-09 04:03 PM
Re: KiXgolf - Easier Done Than Said

Good going, Benny! I guess you're on the right track, eh? :-)

AllenAdministrator
(KiX Supporter)
2008-12-10 06:48 AM
Re: KiXgolf - Easier Done Than Said

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows Vista Business Edition
CPU              = AMD Athlon(tm) 64 X2 Dual Core Processor 5000+
Speed            = 2605 MHz
Memory           = 4094 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 00:47:19.435
Processing End   = 2008/12/10 00:47:22.670
Duration         = 0000/00/00 00:00:03.235
KiXGolf Score    = 536

Thank you for participating in KiXtart Golf!



RemcovC
(Starting to like KiXtart)
2008-12-10 08:04 AM
Re: KiXgolf - Easier Done Than Said

Hi All,

Finally back home after a unplanned extended stay in Thailand (some people who weren't happy with the government decided to capture the airport, which in my case gave me an 11 days extension of my holiday)

And I got my first working code \:\)

Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_edts.kix

Computer
OS = Windows XP Home Edition
CPU = AMD Athlon(tm) 64 Processor 3800+
Speed = 2412 MHz
Memory = 2048 MB

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Easier Done Than Said?
Processing Start = 2008/12/10 08:00:57.078
Processing End = 2008/12/10 08:00:57.078
Duration = 0000/00/00 00:00:00.000
KiXGolf Score = 284

Thank you for participating in KiXtart Golf!


RemcovC
(Starting to like KiXtart)
2008-12-10 08:08 AM
Re: KiXgolf - Easier Done Than Said

ok and now then with an non ancient beta version of kix ^^

 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows XP Home Edition
CPU              = AMD Athlon(tm) 64 Processor 3800+
Speed            = 2412 MHz
Memory           = 2048 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 08:07:39.437
Processing End   = 2008/12/10 08:07:39.437
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 284


RemcovC
(Starting to like KiXtart)
2008-12-10 08:14 AM
Re: KiXgolf - Easier Done Than Said

Cleanup \:\)

 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows XP Home Edition
CPU              = AMD Athlon(tm) 64 Processor 3800+
Speed            = 2412 MHz
Memory           = 2048 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 08:13:46.375
Processing End   = 2008/12/10 08:13:46.375
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 266

Thank you for participating in KiXtart Golf!


AllenAdministrator
(KiX Supporter)
2008-12-10 08:53 AM
Re: KiXgolf - Easier Done Than Said

Here is my new (faster) version, but it is still the fat pig . I have got to go to bed... man you guys kill me.


Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_edts.KIX

Computer
OS = Windows Vista Business Edition
CPU = AMD Athlon(tm) 64 X2 Dual Core Processor 5000+
Speed = 2605 MHz
Memory = 4094 MB

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Easier Done Than Said?
Processing Start = 2008/12/10 02:47:14.813
Processing End = 2008/12/10 02:47:14.834
Duration = 0000/00/00 00:00:00.021
KiXGolf Score = 453

Thank you for participating in KiXtart Golf!


DrillSergeant
(MM club member)
2008-12-10 08:55 AM
Re: KiXgolf - Easier Done Than Said

Damn, those thai promised me they would keep you there at least untill the private round was over... Bastards!

RemcovC
(Starting to like KiXtart)
2008-12-10 09:39 AM
Re: KiXgolf - Easier Done Than Said

A little closer to Rogier

And now knowing you where behind the airport takeover... i'll beat you for sure \:\)

 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows XP Home Edition
CPU              = AMD Athlon(tm) 64 Processor 3800+
Speed            = 2412 MHz
Memory           = 2048 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 09:37:46.484
Processing End   = 2008/12/10 09:37:46.484
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 245

Thank you for participating in KiXtart Golf!


RemcovC
(Starting to like KiXtart)
2008-12-10 09:45 AM
Re: KiXgolf - Easier Done Than Said

ok getting closer:

 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows XP Home Edition
CPU              = AMD Athlon(tm) 64 Processor 3800+
Speed            = 2412 MHz
Memory           = 2048 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 09:46:00.515
Processing End   = 2008/12/10 09:46:00.515
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 236

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2008-12-10 09:51 AM
Re: KiXgolf - Easier Done Than Said

This one has potential ... Tee-Off \:\)


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows XP Professional
CPU              = AMD Athlon(tm) 64 X2 Dual Core Processor 4600+
Speed            = 2410 MHz
Memory           = 1918 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 09:49:02.322
Processing End   = 2008/12/10 09:49:02.372
Duration         = 0000/00/00 00:00:00.050
KiXGolf Score    = 271

Thank you for participating in KiXtart Golf!




RemcovC
(Starting to like KiXtart)
2008-12-10 09:58 AM
Re: KiXgolf - Easier Done Than Said

3 to go
 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows XP Home Edition
CPU              = AMD Athlon(tm) 64 Processor 3800+
Speed            = 2412 MHz
Memory           = 2048 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 09:59:03.343
Processing End   = 2008/12/10 09:59:03.343
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 231


RemcovC
(Starting to like KiXtart)
2008-12-10 10:03 AM
Re: KiXgolf - Easier Done Than Said

Even better \:\)

6 strokes off:
 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows XP Home Edition
CPU              = AMD Athlon(tm) 64 Processor 3800+
Speed            = 2412 MHz
Memory           = 2048 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 10:02:59.093
Processing End   = 2008/12/10 10:02:59.093
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 225

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2008-12-10 10:16 AM
Re: KiXgolf - Easier Done Than Said

and cleaned up a bit ... now to get rid of some of those instr() things ...


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows XP Professional
CPU              = AMD Athlon(tm) 64 X2 Dual Core Processor 4600+
Speed            = 2410 MHz
Memory           = 1918 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 10:13:57.604
Processing End   = 2008/12/10 10:13:57.654
Duration         = 0000/00/00 00:00:00.050
KiXGolf Score    = 256

Thank you for participating in KiXtart Golf!




JochenAdministrator
(KiX Supporter)
2008-12-10 10:27 AM
Re: KiXgolf - Easier Done Than Said

next ...


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows XP Professional
CPU              = AMD Athlon(tm) 64 X2 Dual Core Processor 4600+
Speed            = 2410 MHz
Memory           = 1918 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 10:25:54.069
Processing End   = 2008/12/10 10:25:54.109
Duration         = 0000/00/00 00:00:00.039
KiXGolf Score    = 251

Thank you for participating in KiXtart Golf!




Benny69
(MM club member)
2008-12-10 10:47 AM
Re: KiXgolf - Easier Done Than Said

ok, now i think im on the right track: 253
 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows Vista Business Edition
CPU              =               Intel(R) Pentium(R) D CPU 3.20GHz
Speed            = 3200 MHz
Memory           = 2046 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 03:46:51.232
Processing End   = 2008/12/10 03:46:51.232
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 253

Thank you for participating in KiXtart Golf!
Press any key to continue...


JochenAdministrator
(KiX Supporter)
2008-12-10 10:58 AM
Re: KiXgolf - Easier Done Than Said

Nice Dale! Please make sure to stay back behind my score ;\)


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows XP Professional
CPU              = AMD Athlon(tm) 64 X2 Dual Core Processor 4600+
Speed            = 2410 MHz
Memory           = 1918 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 10:57:43.795
Processing End   = 2008/12/10 10:57:43.845
Duration         = 0000/00/00 00:00:00.050
KiXGolf Score    = 248

Thank you for participating in KiXtart Golf!




JochenAdministrator
(KiX Supporter)
2008-12-10 11:11 AM
Re: KiXgolf - Easier Done Than Said

btw...


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows XP Professional
CPU              = AMD Athlon(tm) 64 X2 Dual Core Processor 4600+
Speed            = 2410 MHz
Memory           = 1918 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 11:11:02.944
Processing End   = 2008/12/10 11:11:02.984
Duration         = 0000/00/00 00:00:00.039
KiXGolf Score    = 244

Thank you for participating in KiXtart Golf!




RemcovC
(Starting to like KiXtart)
2008-12-10 11:39 AM
Re: KiXgolf - Easier Done Than Said

 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows XP Home Edition
CPU              = AMD Athlon(tm) 64 Processor 3800+
Speed            = 2412 MHz
Memory           = 2048 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 11:39:16.656
Processing End   = 2008/12/10 11:39:16.671
Duration         = 0000/00/00 00:00:00.014
KiXGolf Score    = 223

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2008-12-10 11:55 AM
Re: KiXgolf - Easier Done Than Said

gnnnnn....


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows XP Professional
CPU              = AMD Athlon(tm) 64 X2 Dual Core Processor 4600+
Speed            = 2410 MHz
Memory           = 1918 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 11:54:16.408
Processing End   = 2008/12/10 11:54:16.458
Duration         = 0000/00/00 00:00:00.049
KiXGolf Score    = 241

Thank you for participating in KiXtart Golf!




Benny69
(MM club member)
2008-12-10 12:04 PM
Re: KiXgolf - Easier Done Than Said

rrrrrrr: 245
 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows Vista Business Edition
CPU              =               Intel(R) Pentium(R) D CPU 3.20GHz
Speed            = 3200 MHz
Memory           = 2046 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 05:03:49.499
Processing End   = 2008/12/10 05:03:49.515
Duration         = 0000/00/00 00:00:00.015
KiXGolf Score    = 245

Thank you for participating in KiXtart Golf!
Press any key to continue...


JochenAdministrator
(KiX Supporter)
2008-12-10 12:07 PM
Re: KiXgolf - Easier Done Than Said

phew...


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows XP Professional
CPU              = AMD Athlon(tm) 64 X2 Dual Core Processor 4600+
Speed            = 2410 MHz
Memory           = 1918 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 12:07:11.112
Processing End   = 2008/12/10 12:07:11.162
Duration         = 0000/00/00 00:00:00.049
KiXGolf Score    = 239

Thank you for participating in KiXtart Golf!




JochenAdministrator
(KiX Supporter)
2008-12-10 12:17 PM
Re: KiXgolf - Easier Done Than Said

cleaning up a bit more ...


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows XP Professional
CPU              = AMD Athlon(tm) 64 X2 Dual Core Processor 4600+
Speed            = 2410 MHz
Memory           = 1918 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 12:14:59.676
Processing End   = 2008/12/10 12:14:59.726
Duration         = 0000/00/00 00:00:00.050
KiXGolf Score    = 234

Thank you for participating in KiXtart Golf!




DrillSergeant
(MM club member)
2008-12-10 12:17 PM
Re: KiXgolf - Easier Done Than Said

pfft...

 Code:

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows XP Professional
CPU              = Intel(R) Pentium(R) D CPU 2.80GHz
Speed            = 2793 MHz
Memory           = 1008 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 12:10:26.000
Processing End   = 2008/12/10 12:10:26.031
Duration         = 0000/00/00 00:00:00.031
KiXGolf Score    = 224
 
Thank you for participating in KiXtart Golf!


DrillSergeant
(MM club member)
2008-12-10 12:29 PM
Re: KiXgolf - Easier Done Than Said

 Code:

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows XP Professional
CPU              = Intel(R) Pentium(R) D CPU 2.80GHz
Speed            = 2793 MHz
Memory           = 1008 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 12:29:17.062
Processing End   = 2008/12/10 12:29:17.078
Duration         = 0000/00/00 00:00:00.016
KiXGolf Score    = 223
 
Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2008-12-10 12:32 PM
Re: KiXgolf - Easier Done Than Said

Nice one!

Wonder if the code is the same or not.


Benny69
(MM club member)
2008-12-10 12:39 PM
Re: KiXgolf - Easier Done Than Said

you dirty dawgs! ;\)

DrillSergeant
(MM club member)
2008-12-10 12:52 PM
Re: KiXgolf - Easier Done Than Said

 Originally Posted By: Jochen
Wonder if the code is the same or not.


That has been said before... it never was ;\)


Benny69
(MM club member)
2008-12-10 01:48 PM
Re: KiXgolf - Easier Done Than Said

239
 Code:
Running Test 8...Done
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows Vista Business Edition
CPU              =               Intel(R) Pentium(R) D CPU 3.20GHz
Speed            = 3200 MHz
Memory           = 2046 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 06:47:51.745
Processing End   = 2008/12/10 06:47:51.745
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 239

Thank you for participating in KiXtart Golf!
Press any key to continue...


JochenAdministrator
(KiX Supporter)
2008-12-10 01:59 PM
Re: KiXgolf - Easier Done Than Said

uh oh!

I seem to be stuck at 234 \:\(


Benny69
(MM club member)
2008-12-10 02:35 PM
Re: KiXgolf - Easier Done Than Said

232
 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows Vista Business Edition
CPU              =               Intel(R) Pentium(R) D CPU 3.20GHz
Speed            = 3200 MHz
Memory           = 2046 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 07:34:38.909
Processing End   = 2008/12/10 07:34:38.909
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 232

Thank you for participating in KiXtart Golf!
Press any key to continue...


Benny69
(MM club member)
2008-12-10 02:39 PM
Re: KiXgolf - Easier Done Than Said

227
 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows Vista Business Edition
CPU              =               Intel(R) Pentium(R) D CPU 3.20GHz
Speed            = 3200 MHz
Memory           = 2046 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 07:39:21.137
Processing End   = 2008/12/10 07:39:21.153
Duration         = 0000/00/00 00:00:00.015
KiXGolf Score    = 227

Thank you for participating in KiXtart Golf!
Press any key to continue...


JochenAdministrator
(KiX Supporter)
2008-12-10 02:43 PM
Re: KiXgolf - Easier Done Than Said

You dawg!!! \:o

Benny69
(MM club member)
2008-12-10 02:46 PM
Re: KiXgolf - Easier Done Than Said

idk, i think i may have to come up with a 4th approach to catch drill and rem

JochenAdministrator
(KiX Supporter)
2008-12-10 02:49 PM
Re: KiXgolf - Easier Done Than Said

Hmmm ... only 4 to close up to them, and you think of another approach?
Ye got balls!


Benny69
(MM club member)
2008-12-10 02:53 PM
Re: KiXgolf - Easier Done Than Said

OMG! \:o
222
 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows Vista Business Edition
CPU              =               Intel(R) Pentium(R) D CPU 3.20GHz
Speed            = 3200 MHz
Memory           = 2046 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 07:51:48.983
Processing End   = 2008/12/10 07:51:48.983
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 222

Thank you for participating in KiXtart Golf!
Press any key to continue...


Gargoyle
(MM club member)
2008-12-10 03:15 PM
Re: KiXgolf - Easier Done Than Said

You all make me sick.... I am still trying to pare my 500 + code

AllenAdministrator
(KiX Supporter)
2008-12-10 03:54 PM
Re: KiXgolf - Easier Done Than Said

My sleepy eyes missed an obvious one last night. Only 200 to go.


Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_edts.KIX

Computer
OS = Windows Vista Business Edition
CPU = AMD Athlon(tm) 64 X2 Dual Core Processor 5000+
Speed = 2605 MHz
Memory = 4094 MB

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Easier Done Than Said?
Processing Start = 2008/12/10 09:49:47.002
Processing End = 2008/12/10 09:49:47.009
Duration = 0000/00/00 00:00:00.006
KiXGolf Score = 426

Thank you for participating in KiXtart Golf!




Benny69
(MM club member)
2008-12-10 05:27 PM
Re: KiXgolf - Easier Done Than Said

I added this Test 9

[Test 9]
Input=pooop
Output=<pooop> is not acceptable.

and my code failed, so i had to make a small change and it worked out for the better.
220
 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows Vista Business Edition
CPU              =               Intel(R) Pentium(R) D CPU 3.20GHz
Speed            = 3200 MHz
Memory           = 2046 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 10:26:09.492
Processing End   = 2008/12/10 10:26:09.492
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 220

Thank you for participating in KiXtart Golf!
Press any key to continue...


JochenAdministrator
(KiX Supporter)
2008-12-10 06:20 PM
Re: KiXgolf - Easier Done Than Said

I thought of that as well (I was about to post that case 9 as peeep though) Oh well, seems to fit nicely with my code (still no improvement here except speed ... well, im at home now):


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

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows XP Professional
CPU              = Intel Pentium Model 15
Speed            = 2400 MHz
Memory           = 2048 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 18:16:04.375
Processing End   = 2008/12/10 18:16:04.375
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 234

Thank you for participating in KiXtart Golf!




JochenAdministrator
(KiX Supporter)
2008-12-10 06:21 PM
Re: KiXgolf - Easier Done Than Said

 Originally Posted By: Benny69

and my code failed, so i had to make a small change and it worked out for the better.
220


You dirty basta!!

edit - so, what about

 Code:
[Test 9]
Input=peeep
Output=<peeep> is not acceptable.


Benny69
(MM club member)
2008-12-10 08:44 PM
Re: KiXgolf - Easier Done Than Said

I think both should be able to pass but one of the two would be good enough, just to test my own code I added both:
 Code:
[Test 9]
Input=pooop
Output=<pooop> is not acceptable.
[Test 10]
Input=peeep
Output=<peeep> is not acceptable.


 Code:
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

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows Vista Ultimate Edition
CPU              =               Intel(R) Pentium(R) D CPU 2.80GHz
Speed            = 2793 MHz
Memory           = 2048 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 13:42:56.963
Processing End   = 2008/12/10 13:42:56.986
Duration         = 0000/00/00 00:00:00.022
KiXGolf Score    = 220

Thank you for participating in KiXtart Golf!
Press any key to continue...


DrillSergeant
(MM club member)
2008-12-10 08:52 PM
Re: KiXgolf - Easier Done Than Said

I'm sooo gonna fail my exam on friday... but this kinda makes up for it \:D

 Code:
Running Test 1...
Running Test 2...
Running Test 3...
Running Test 4...
Running Test 5...
Running Test 6...
Running Test 7...
Running Test 8...
Running Test 9...
Running Test 10...
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows Vista Business Edition
CPU              = Intel Pentium Model 15
Speed            = 2194 MHz
Memory           = 2038 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 20:50:04.876
Processing End   = 2008/12/10 20:50:04.939
Duration         = 0000/00/00 00:00:00.062
KiXGolf Score    = 214

Thank you for participating in KiXtart Golf!


DrillSergeant
(MM club member)
2008-12-10 09:03 PM
Re: KiXgolf - Easier Done Than Said

Reshuffled my vars

 Code:
Running Test 1...
Running Test 2...
Running Test 3...
Running Test 4...
Running Test 5...
Running Test 6...
Running Test 7...
Running Test 8...
Running Test 9...
Running Test 10...
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows Vista Business Edition
CPU              = Intel Pentium Model 15
Speed            = 2194 MHz
Memory           = 2038 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 21:02:46.326
Processing End   = 2008/12/10 21:02:46.388
Duration         = 0000/00/00 00:00:00.062
KiXGolf Score    = 213

Thank you for participating in KiXtart Golf!


Benny69
(MM club member)
2008-12-10 09:18 PM
Re: KiXgolf - Easier Done Than Said

you DAWG! ;\)

well it was nice to be on top for a little while, and i knew it wouldn't last long ;\)


DrillSergeant
(MM club member)
2008-12-10 10:27 PM
Re: KiXgolf - Easier Done Than Said

Current standings:

Sarge - 213
Benny - 220
Remco - 223
Jochen - 234
Allen - 426
Gargoyle - 557

And now back to the testkings & passforsure's for me \:\)


JochenAdministrator
(KiX Supporter)
2008-12-10 10:52 PM
Re: KiXgolf - Easier Done Than Said

Wow, nice going Sarge!

Think my 234 is no more to be golfed and hereby declared a dead end \:\(
Will think it over tomorrow ... hopefully


Sealeopard
(KiX Master)
2008-12-11 04:17 AM
Re: KiXgolf - Easier Done Than Said

Looks like everybody's having fun? I added three official test to the package. Either add the cases below or download the package at http://s91376351.onlinehome.us/kixtart/kixgolf_edts.zip

 Code:
[Test 9]
Input=pooop
Output=<pooop> is not acceptable.
[Test 10]
Input=peeep
Output=<peeep> is not acceptable.
[Test 11]
Input=bahhah
Output=<bahhah> is not acceptable.
[Test 12]
Input=abcde
Output=<abcde> is not acceptable.


AllenAdministrator
(KiX Supporter)
2008-12-11 04:31 AM
Re: KiXgolf - Easier Done Than Said

Tested with new cases.


Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_edts.KIX

Computer
OS = Windows Vista Business Edition
CPU = AMD Athlon(tm) 64 X2 Dual Core Processor 5000+
Speed = 2605 MHz
Memory = 4094 MB

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Easier Done Than Said?
Processing Start = 2008/12/10 22:28:01.336
Processing End = 2008/12/10 22:28:01.348
Duration = 0000/00/00 00:00:00.012
KiXGolf Score = 411

Thank you for participating in KiXtart Golf!


AllenAdministrator
(KiX Supporter)
2008-12-11 04:50 AM
Re: KiXgolf - Easier Done Than Said

Finally below 400!

Nice thing about having bloated code... I find chunks, where you guys are fishing for 1 stroke.

Come on Gargs, if I can find hundred strokes, I know you can.

Your solution passed all tests


KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_edts.KIX


Computer
OS = Windows Vista Business Edition
CPU = AMD Athlon(tm) 64 X2 Dual Core Processor 5000+
Speed = 2605 MHz
Memory = 4094 MB


KiXGolf Scoring Engine
Scoring Engine = 3.3


KiXtart Golf Score
Tournament = Easier Done Than Said?
Processing Start = 2008/12/10 22:44:45.204
Processing End = 2008/12/10 22:44:45.237
Duration = 0000/00/00 00:00:00.032
KiXGolf Score = 399


Thank you for participating in KiXtart Golf!


AllenAdministrator
(KiX Supporter)
2008-12-11 04:58 AM
Re: KiXgolf - Easier Done Than Said

aaaahhh.... I found a big one.

Your solution passed all tests


KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_edts.KIX


Computer
OS = Windows Vista Business Edition
CPU = AMD Athlon(tm) 64 X2 Dual Core Processor 5000+
Speed = 2605 MHz
Memory = 4094 MB


KiXGolf Scoring Engine
Scoring Engine = 3.3


KiXtart Golf Score
Tournament = Easier Done Than Said?
Processing Start = 2008/12/10 22:51:46.209
Processing End = 2008/12/10 22:51:46.235
Duration = 0000/00/00 00:00:00.025
KiXGolf Score = 360


Thank you for participating in KiXtart Golf!


AllenAdministrator
(KiX Supporter)
2008-12-11 05:13 AM
Re: KiXgolf - Easier Done Than Said

YEEAAAHH Baby... (yes I am aware I am not even close to you guys... but small victories must be enjoyed. )

Your solution passed all tests


KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_edts.KIX


Computer
OS = Windows Vista Business Edition
CPU = AMD Athlon(tm) 64 X2 Dual Core Processor 5000+
Speed = 2605 MHz
Memory = 4094 MB


KiXGolf Scoring Engine
Scoring Engine = 3.3


KiXtart Golf Score
Tournament = Easier Done Than Said?
Processing Start = 2008/12/10 23:08:43.577
Processing End = 2008/12/10 23:08:43.606
Duration = 0000/00/00 00:00:00.028
KiXGolf Score = 340


Thank you for participating in KiXtart Golf!


RemcovC
(Starting to like KiXtart)
2008-12-11 06:43 AM
Re: KiXgolf - Easier Done Than Said

ok my solution passed all test but stil 222
 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows XP Home Edition
CPU              = AMD Athlon(tm) 64 Processor 3800+
Speed            = 2412 MHz
Memory           = 2048 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/11 06:43:01.265
Processing End   = 2008/12/11 06:43:01.296
Duration         = 0000/00/00 00:00:00.030
KiXGolf Score    = 222

Thank you for participating in KiXtart Golf!


DrillSergeant
(MM club member)
2008-12-11 06:59 AM
Re: KiXgolf - Easier Done Than Said

Checked with new test cases. No Problemo \:\)

 Code:
Running Test 1...
Running Test 2...
Running Test 3...
Running Test 4...
Running Test 5...
Running Test 6...
Running Test 7...
Running Test 8...
Running Test 9...
Running Test 10...
Running Test 11...
Running Test 12...
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows Vista Business Edition
CPU              = Intel Pentium Model 15
Speed            = 2194 MHz
Memory           = 2038 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/11 06:58:20.326
Processing End   = 2008/12/11 06:58:20.342
Duration         = 0000/00/00 00:00:00.015
KiXGolf Score    = 213

Thank you for participating in KiXtart Golf!


Gargoyle
(MM club member)
2008-12-11 07:30 AM
Re: KiXgolf - Easier Done Than Said

My problem has been the lack of time. Working 16 hours a day doesn't leave much time for contemplating.

 Code:
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.KIX

Computer
OS               = Windows XP Media Center Edition
CPU              =               Intel(R) Pentium(R) 4 CPU 3.00GHz
Speed            = 3000 MHz
Memory           = 2048 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/10 23:30:13.281
Processing End   = 2008/12/10 23:30:13.328
Duration         = 0000/00/00 00:00:00.046
KiXGolf Score    = 560

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2008-12-11 09:27 AM
Re: KiXgolf - Easier Done Than Said

Here with the new test cases... no problem as well (except the 20+ strokes I miss)...
btw. good luck with your exam tomorrow Sarge!



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
Running Test 11...Done
Running Test 12...Done
Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows XP Professional
CPU              = AMD Athlon(tm) 64 X2 Dual Core Processor 4600+
Speed            = 2410 MHz
Memory           = 1918 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/11 09:25:39.250
Processing End   = 2008/12/11 09:25:39.400
Duration         = 0000/00/00 00:00:00.150
KiXGolf Score    = 234

Thank you for participating in KiXtart Golf!




Benny69
(MM club member)
2008-12-11 02:42 PM
Re: KiXgolf - Easier Done Than Said

no change 220 / passed all tests:

 Code:
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
Running Test 11...Done
Running Test 12...Done
Your solution passed all tests

KiXtart
KiXtart Version  = 4.60
KiXGolf Script   = kixgolf_edts.kix

Computer
OS               = Windows Vista Business Edition
CPU              =               Intel(R) Pentium(R) D CPU 3.20GHz
Speed            = 3200 MHz
Memory           = 2046 MB

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Easier Done Than Said?
Processing Start = 2008/12/11 07:41:31.966
Processing End   = 2008/12/11 07:41:31.982
Duration         = 0000/00/00 00:00:00.015
KiXGolf Score    = 220

Thank you for participating in KiXtart Golf!
Press any key to continue...



JochenAdministrator
(KiX Supporter)
2008-12-11 03:35 PM
Re: KiXgolf - Easier Done Than Said

This sucks,

neither can I shave of a single stroke from my exisiting nor can I think of anoother promising approach


Benny69
(MM club member)
2008-12-11 05:56 PM
Re: KiXgolf - Easier Done Than Said

I think I'm in your boat Jochen, mind blank

AllenAdministrator
(KiX Supporter)
2008-12-11 06:40 PM
Re: KiXgolf - Easier Done Than Said

Jens, does this end tonight, or is it through tomorrow?

This thread continues here:
http://www.kixtart.org/forums/ubbthreads.php?ubb=showflat&Number=191050#Post191050


DrillSergeant
(MM club member)
2008-12-11 08:58 PM
Re: KiXgolf - Easier Done Than Said