mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
miguel
4778a0b693
|
4 months ago | |
---|---|---|
.. | ||
README.md | 4 months ago |
README.md
hiddenp
Instructions
Write a program named hiddenp
that takes two strings
as arguments. The program should check if the first string s1
is hidden in the second s2
.
s1
is considered hidden in s2
if it is possible to find each character from s1
in s2
, in the same order as they appear in s1
, but not necessarily consecutively.
- If
s1
is hidden ins2
, the program should display1
followed by a newline. - If
s1
is not hidden ins2
, the program should display0
followed by a newline. - If
s1
is an empty string, it is considered hidden in any string. - If the number of arguments is different from 2, the program should display nothing.
Usage
$ go run . "fgex.;" "tyf34gdgf;'ektufjhgdgex.;.;rtjynur6" | cat -e
1$
$ go run . "abc" "2altrb53c.sse" | cat -e
1$
$ go run . "abc" "btarc" | cat -e
0$
$ go run . "DD" "DABC" | cat -e
0$
$ go run .
$