Add coding exercises for Facebook interviews
Add attempts at solving coding problems to Briefcase.
This commit is contained in:
parent
d2d772e43e
commit
aa66d9b83d
66 changed files with 2994 additions and 0 deletions
19
scratch/facebook/cafe-order-checker.py
Normal file
19
scratch/facebook/cafe-order-checker.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
def orders_are_sorted(take_out, dine_in, audit):
|
||||
if len(take_out) + len(dine_in) != len(audit):
|
||||
return False
|
||||
|
||||
i, j = 0, 0
|
||||
for x in audit:
|
||||
if i < len(take_out) and take_out[i] == x:
|
||||
i += 1
|
||||
elif j < len(dine_in) and dine_in[j] == x:
|
||||
j += 1
|
||||
else:
|
||||
return False
|
||||
return True
|
||||
|
||||
|
||||
assert orders_are_sorted([1,3,5], [2,4,6], [1,2,4,3,6,5])
|
||||
assert not orders_are_sorted([1,3,5], [2,4,6], [1,2,4,5,6,3])
|
||||
assert orders_are_sorted([], [2,4,6], [2,4,6])
|
||||
print("Success!")
|
||||
Loading…
Add table
Add a link
Reference in a new issue