You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We realise that a simple Wordle response won't be good enough for some, hence we wish to develop a scoring system, based on a user's response. We leave the implementation up to you, but here are some examples of possible scoring systems:
By Distance
At its current stage, nushdle uses Euclidean distance from the top view, and floor numbering. This gives the person an idea of how far the location is. What you can do is take the height between stories, get the actual height disparity and then compute the Pythagorean sum of the horizontal distance and the height disparity. Thus, you'll have a decent distance measurement, dist. From here, you can weigh the distances, for instance 10 / dist for row 1, `
According to Reddit 🤔
We found a scoring system for normal reddit, but this can be closely modified!
For instance, in Guess 1:
If you solve the name correctly, you get 50 points
If you get the same floor, you get 15 points
If you get the same distance, but not the same floor (this is a bug, see this), you get 20 points
If you get the same floor, but a 20m radius, you get 10 points
If you get a different floor but a 20m radius, you get 5 points
Else you get 0.
You can change these values in each guess, and we leave this as up to you.
Read more here. (Sorry to force you to browse Reddit 💀)
The text was updated successfully, but these errors were encountered:
We realise that a simple Wordle response won't be good enough for some, hence we wish to develop a scoring system, based on a user's response. We leave the implementation up to you, but here are some examples of possible scoring systems:
By Distance
At its current stage,
nushdle
uses Euclidean distance from the top view, and floor numbering. This gives the person an idea of how far the location is. What you can do is take the height between stories, get the actual height disparity and then compute the Pythagorean sum of the horizontal distance and the height disparity. Thus, you'll have a decent distance measurement,dist
. From here, you can weigh the distances, for instance10 / dist
for row 1, `According to Reddit 🤔
We found a scoring system for normal reddit, but this can be closely modified!
For instance, in Guess 1:
You can change these values in each guess, and we leave this as up to you.
Read more here. (Sorry to force you to browse Reddit 💀)
The text was updated successfully, but these errors were encountered: