Welcome To Golang By Example

Menu
  • Home
  • Blog
Menu

Program for Income Tax Paid in Go (Golang)

Posted on July 26, 2023July 26, 2023 by admin

Table of Contents

  • Overview
  • Program

Overview

A 2d array is given which represents the bracket of income tax. The input array is brackets where

brackets[i] = [upperi, percenti]

which means that ith bracket has an upper bound of upperi and is taxed at a rate of percent. The brackets array is sorted by upper bound. Below is the way tax is calculated

  • Money till upper0 is taxed at percent0
  • upper1-upper0 is taxed at percent1
  • .. and so on

You are also given the income as an input. You have to calculate income tax on that. It is given that the upper bound of the last bracket is greater than the income.

Example 1

Input: brackets = [[4,10],[9,20],[12,30]], income = 10
Output: 1.7

Example 2

Input: brackets = [[3,10]], income = 1
Output: 0.3

Program

Below is the program for the same

package main
import "fmt"
func calculateTax(brackets [][]int, income int) float64 {
if income == 0 {
return 0
}
var totalTax float64
numBrackets := len(brackets)
upper := 0
for i := 0; i < numBrackets; i++ {
if i == 0 {
upper = brackets[i][0]
} else {
upper = brackets[i][0] - brackets[i-1][0]
}
taxPer := brackets[i][1]
if income <= upper {
totalTax += float64(income) * float64(taxPer) / 100
break
} else {
totalTax += float64(upper) * float64(taxPer) / 100
income = income - upper
}
}
return totalTax
}
func main() {
output := calculateTax([][]int{{4, 10}, {9, 20}, {12, 30}}, 10)
fmt.Println(output)
output = calculateTax([][]int{{3, 10}}, 10)
fmt.Println(output)
}

Output:

1.7
0.3

Note: Check out our Golang Advanced Tutorial. The tutorials in this series are elaborative and we have tried to cover all concepts with examples. This tutorial is for those who are looking to gain expertise and a solid understanding of golang - Golang Advance Tutorial

Also if you are interested in understanding how all design patterns can be implemented in Golang. If yes, then this post is for you - All Design Patterns Golang

Also, check out our system design tutorial series here - System Design Tutorial Series

Popular Articles

Golang Comprehensive Tutorial Series

All Design Patterns in Go (Golang)

Slice in golang

Variables in Go (Golang) – Complete Guide

OOP: Inheritance in GOLANG complete guide

Using Context Package in GO (Golang) – Complete Guide

All data types in Golang with examples

Understanding time and date in Go (Golang) – Complete Guide

©2023 Welcome To Golang By Example | Design: Web XP