The function converts input strings into lowercase and removes spaces.

[CODE]: 
```python
def f(x):
    return x.lower().replace(' ', '')
```