Skip to content

1115-print-foobar-alternately

DevGod
DevGod
Vtuber
class FooBar:
def __init__(self, n):
self.n = n
self.fooLock = threading.Lock()
self.barLock = threading.Lock()
self.barLock.acquire()
def foo(self, printFoo: 'Callable[[], None]') -> None:
for i in range(self.n):
self.fooLock.acquire()
# printFoo() outputs "foo". Do not change or remove this line.
printFoo()
self.barLock.release()
def bar(self, printBar: 'Callable[[], None]') -> None:
for i in range(self.n):
self.barLock.acquire()
# printBar() outputs "bar". Do not change or remove this line.
printBar()
self.fooLock.release()