Tagged Questions

2
votes
2answers
54 views

Sort list of anything by relations

In an application I'm doing, I am given a list of items, and relations between them and I need to calculate a sorted list. For fun, lets use an exam scoring example, we know that: John has done ...
1
vote
4answers
440 views

Scoring algorithms: how to convert the number & % of “Likes” & “Dislikes” into a single score?

I have a website where users can "Like" and "Dislike" items. So for each item, I have data such as the total number of "Likes" and the % of total votes that are "Likes". I'd like to calculate just ...
1
vote
1answer
196 views

Algorithm for scoring user activity

I have an application where users can: Write reviews about products Add comments to products Up / Down vote reviews Up / Down vote comments Every Up/Down vote is recorded in a db table. What i ...
0
votes
2answers
146 views

Order sets of numbers for maximum distance

You have (up to 100) distinct sets of (2-4) numbers. The order of the sets or numbers in the sets does not matter. The highest number relates to the number of sets and goes up to 30. Like: {1 2 3 4} ...
-1
votes
1answer
94 views

Scoring Algorithm [closed]

consider the data in the form of (Sorted) cost ----- 2 3 5 6 6 6 6 8 10 18 20 22 Need a scoring algorithm, in which for all 6's the score should be same, and the difference between the scores of 10 ...