Objective
Write a program that determines whether every character of the first argument appears, in the same relative order, somewhere inside the second argument.
Steps
$ ./subseq_check "run" "r0u1n2time"
yes
$ ./subseq_check "build" "bludI"
no
$ ./subseq_check
wrong number of arguments
Expected files
Allowed functions

Objective
Write a program that determines whether every character of the first argument appears, in the same relative order, somewhere inside the second argument.
Steps
$ ./subseq_check "run" "r0u1n2time"
yes
$ ./subseq_check "build" "bludI"
no
$ ./subseq_check
wrong number of arguments
Expected files
Allowed functions

Tests
Run the tests to grade your code