Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions L-B/Evaluate two strings/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## You are given an array that has two strings in it. Write a function to check whether all the letters in the second string is presenst in the first string of the array, ignoring the case.The function should return a boolean.
### eg:- stringEvaluate(['React','cat']) should return true
### stringEvaluate(['tab','tan']) should return false