Jonas Reinsch

Results 1 issues of Jonas Reinsch

Small code simplification: the line ``` chars = sorted(list(set(''.join(words)))) ``` can be simplified to ``` chars = sorted(set(''.join(words))) ``` because `sorted(...)` accepts any `iterable` and `set(...)` returns an `iterable`. I...