Invisible AI for Technical Interviews
interviewcoder.net3 pointsby yoshicoder0 comments
def formula(total_qs, terminating):
total = 1 << (total_qs - len(terminating))
for i, num in enumerate(terminating):
total += 1 << (num - i)
return total
print(formula(10, [1, 5]))```