function merge_tax_tables(t1, t2) {
if (t1.length == 0) return t2;
if (t2.length == 0) return t1;
- [start1, end1, rate1] = t1[0];
- [start2, end2, rate2] = t2[0];
+ const [start1, end1, rate1] = t1[0];
+ const [start2, end2, rate2] = t2[0];
if (start1 == start2) {
if (end1 == end2) {
return [[start1, end1, rate1 + rate2]].concat(merge_tax_tables(t1.slice(1), t2.slice(1)));
test("tax", () => {
assert.strictEqual(tax([[10, 100, .01], [100, Infinity, .1]], 150), 5.9);
});
+
+test("merge tax tables", () => {
+ function rand(limit = 100) {
+ return Math.round(Math.random() * limit);
+ }
+ function make_random_tax_table(min_threshold) {
+ if (rand(2)) return [];
+ const start = min_threshold === undefined ? rand() : min_threshold;
+ const end = start + 1 + rand();
+ return [[start, end, rand()]].concat(make_random_tax_table(end));
+ }
+ for (var i = 0; i < 1000; i++) {
+ const t1 = make_random_tax_table();
+ const t2 = make_random_tax_table();
+ const combined = merge_tax_tables(t1, t2);
+ for (var j = 0; j < 10; j++) {
+ const income = rand(250);
+ assert.strictEqual(tax(t1, income) + tax(t2, income), tax(combined, income));
+ }
+ }
+});