rifaterdemsahin / aif

Adaptive Intelligence Framework
5 stars 7 forks source link

Scoring system #254

Open rifaterdemsahin opened 6 years ago

rifaterdemsahin commented 6 years ago

image

Neutrinora commented 6 years ago

If we need a timing system for scoring, my suggestions about timing system:

Complexity time: (letterCount x letterCount) / 2 Time per letter: 4 secs

Example for word "Fog" 3 letters Complexity time = (3x3)/2 = 4.5 Total time: 4.5 + (3x4) = 16.5 secs

Example for word "Hare" 4 letters Complexity time = (4x4)/2 = 8 Total time: 8 + (4x4) = 24 secs

Example for word "Umbrella" 8 letters Complexity time = (8x8)/2 = 32 Total time: 32 + (8x4) = 64 secs

Neutrinora commented 6 years ago

And we can use 25 + (timeLeft * 10) to calculate score. Minimum score is 25

rifaterdemsahin commented 6 years ago

Bora great comment. here is the feedback https://drive.google.com/file/d/15fvEI91F6HMro_8jpsXOJPJAYBt-Rv2K/view?usp=sharing

rifaterdemsahin commented 6 years ago

in the beginning levels starting with zero and using integers would help to make it stay with simple numbers image

rifaterdemsahin commented 6 years ago

example : first levels : solves in 2 seconds 10*1 =10 solves in 11 seconds 1 point

So to factor can be used as one to make it easier to consume.

rifaterdemsahin commented 6 years ago

image