Answered step by step
Verified Expert Solution
Question
1 Approved Answer
2 You are given a list of all the transactions on a bank account during the year 2 0 2 0 . The account was
You are given a list of all the transactions on a bank account during the year The account was empty at the beginning of the year the balance was Each transaction specifies the amount and the date it was executed. If the amount is negative less than then it was a card payment, otherwise it was an incoming transfer amount at least The date of each transaction is in YYYYMMDD format: for example, represents th May Additionally, there is a fee for having a card omitted in the given transaction list which is per month. This fee is deducted from the account balance at the end of each month unless there were at least three payments made by card for a total cost of at least within that month.Your task is to compute the final balance of the account at the end of the year Write a function:class Solution public int solutionint A StringD: that given an array A of N integers representing transaction amounts and an array D of N strings representing transaction dates, returns the final balance of the account at the end of the year Transaction number K for K within the range ON was executed on the date represented by DK for amount AIK.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started