Objective
Write a program that scans a string argument and prints the first lowercase n it finds.
Steps
$ ./find_n "npm said no"
n
$ ./find_n "skip this"
(no output)
$ ./find_n
wrong number of arguments
Expected files
Allowed functions

Objective
Write a program that scans a string argument and prints the first lowercase n it finds.
Steps
$ ./find_n "npm said no"
n
$ ./find_n "skip this"
(no output)
$ ./find_n
wrong number of arguments
Expected files
Allowed functions

Tests
Run the tests to grade your code