Today we worked over some more practice problems and learned about binary search. I accidentally change the zoom link so please use the new ones from now on.
Class slides. HW inside on slide 6
Post your solutions in the comments if you can. Please review previous practice problems and try to figure them out yourself. You can ask me questions during class or via email.
See you next week!
if len(s) != len(t): return False for n in (s): if s.count(n) != t.count(n): return False else: return True