cs221313

Results 1 issues of cs221313

```python assert (point is not None) ^ is_pass ^ is_resign ``` should be: ```python assert ((point is not None) ^ is_pass ^ is_resign) and not ((point is not None) and...