Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Fix code to get the following output with given input : Sample Input 0 3 2 1 0 2 7 12 Sample Output 0 070
Fix code to get the following output with given input :
Sample Input 0
3 2 1 0 2 7 12
Sample Output 0
070 021
def getCounterValues(connections, spectatorCounts): res = [] for s in spectatorCounts: num = [int(d) for d in str(s).zfill(len(connections))] for i in range(len(connections)): if num[i] == 9: num[i] = 0 if i + 1 < len(num): num[i + 1] += 1 res.append(''.join(map(str, num))) return res
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