From 9e6e9e5f067367edabd91501eb9b94014a40f9f2 Mon Sep 17 00:00:00 2001 From: Ali Date: Mon, 26 May 2025 16:56:02 +0330 Subject: TWC323 --- challenge-323/deadmarshal/java/Ch2.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 challenge-323/deadmarshal/java/Ch2.java (limited to 'challenge-323/deadmarshal/java/Ch2.java') diff --git a/challenge-323/deadmarshal/java/Ch2.java b/challenge-323/deadmarshal/java/Ch2.java new file mode 100644 index 0000000000..b2208c1d23 --- /dev/null +++ b/challenge-323/deadmarshal/java/Ch2.java @@ -0,0 +1,17 @@ +public class Ch2 { + public static void main(String[] args) { + System.out.println(tax_amount(10, new int[][]{{3, 50}, {7, 10}, {12, 25}})); + System.out.println(tax_amount(2, new int[][]{{1, 0}, {4, 25}, {5, 50}})); + System.out.println(tax_amount(0, new int[][]{{2, 50}})); + } + + private static double tax_amount(int income, int[][] taxes) { + int res = 0, prev = 0; + for (var e : taxes) { + res += Math.max(0, Math.min(income, e[0]) - prev) * e[1]; + prev = e[0]; + } + return res / 100.0; + } +} + -- cgit