You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## You are given an array with two strings. Write a function to check all the letters present in the second string is also present in the first string,ignoring the case.The function should return a boolean.
2
+
### eg: stringCheck(["React","cat"]) should return true
3
+
### stringCheck(["tab","tan"]) should return false
0 commit comments