''' can you fix the bug in this code snippet? #check if two strings are anagrams def is_anagram(a,b): for char in a: if char not in b: return False return True show me pseudo-code of an adaptive BCI algorithm please 1d An SIR model in python, using matplotlib for visualization ''' def is_anagram(a,b): if len(a) != len(b): return False for char in a: if char not in b: return False b = b.replace(char, '', 1) return True