The function replaces the letter "o" with "N" in the input string, leaving all other characters unchanged.

[CODE]:
```python
def approximate_function(input_string):
    return input_string.replace('o', 'N')
```