Amy Monkhouse
Results
1
issues of
Amy Monkhouse
tested using: ```bash test_array="a b c" test_value="b" is_in_array "${test_value}" "${test_array}" && echo "$test_value is in the array" || echo "$test_value is not in the array" test_value="d" is_in_array "${test_value}" "${test_array}" &&...