-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.js
125 lines (114 loc) · 3.43 KB
/
calculator.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
process.stdin.setEncoding('utf8');
/**
* Hash table to store all bets for each product
*/
const game = {};
/**
* Store config for each product/game including its commission
*/
const productConfigs = [
{
code: 'w',
name: 'Win',
commission: 0.15
},
{
code: 'p',
name: 'Place',
commission: 0.12
},
{
code: 'e',
name: 'Exacta',
commission: 0.18
}
];
/**
* Util function to process each bet into a hash table for further lookup and calculation
* @param {string} product - the code of the product, e.g. 'w', 'p' or 'e'
* @param {string} selections - the selection(s) of each bet, could be single selection like '1' or multiple selections that is comma seperated: '1,2'
* @param {string} stake - the amount of the bet, in string
*/
const processBet = (product, selections, stake) => {
const currentGame = game[product];
const stakeNum = Number(stake);
if (currentGame) {
game[product] = {
...currentGame,
pool: currentGame.pool + stakeNum,
[selections]: currentGame[selections] ? currentGame[selections] + stakeNum : stakeNum
}
return;
}
game[product] = {
pool: stakeNum,
[selections]: stakeNum
}
};
/**
* Util function to process the result input, it outputs the result to stdout
* @param {string} first - winner of the game
* @param {string} second - second place of the game
* @param {string} third - thrid place of the game
*/
const processResult = (first, second, third) => {
const output = productConfigs.reduce((content, config) => {
const { code, name, commission } = config;
const poolAfterCommission = game[code].pool * (1 - commission);
switch (code) {
case 'w': {
const dividend = poolAfterCommission / game[code][first]
content += `${name}:${first}:$${dividend.toFixed(2)}\n`;
break;
}
case 'p': {
const placePoolIndividual = poolAfterCommission / 3;
const dividendFirst = placePoolIndividual / game[code][first];
const dividendSecond = placePoolIndividual / game[code][second];
const dividendThird = placePoolIndividual / game[code][third];
content += `${name}:${first}:$${dividendFirst.toFixed(2)}\n`;
content += `${name}:${second}:$${dividendSecond.toFixed(2)}\n`;
content += `${name}:${third}:$${dividendThird.toFixed(2)}\n`;
break;
}
case 'e': {
const dividend = poolAfterCommission / game[code][`${first},${second}`];
content += `${name}:${first},${second}:$${dividend.toFixed(2)}\n`;
break;
}
}
return content;
}, '');
// Stdout the dividents
console.log("\n======== Dividents ========\n")
console.log(output);
process.exit();
};
/**
* Util function to process each line input, routes to processBet or processResult depends on the input
* @param {string} line - stdin of each line
*/
const processLineInput = (line) => {
const [key, ...params] = line.split(':');
switch (key) {
case 'bet':
processBet(...params);
break;
case 'result':
processResult(...params);
break
default:
// do nothing
}
};
/**
* Entry point of the app, add listener to each line input
*/
const main = () => {
process.stdout.write(`\nPlease enter the bet(s), enter the result as the last input/line to calculate the dividends:\n`);
process.stdin.on('data', (data) => {
const lineInput = data.toLowerCase().trim();
processLineInput(lineInput);
});
}
main();