تابعی بنویسید که دو کلمه را در ورودی بگیرد. اگر تمام حروف کلمه دوم در کلمه اول بود، true و در غیر این صورت false چاپ کند.
    
نمونه ورودی و خروجی
LetterCheck("trances", "nectar") ➞ True
LetterCheck("compadres", "DRAPES") ➞ True
LetterCheck("parses", "parsecs") ➞ False
    نکات
- تابع نباید به کوچکی و بزرگی حروف حساس باشد. (مثل مثال 2)
 
LetterCheck("trances", "nectar")  ➞ True
                                                                    LetterCheck("compadres", "DRAPES")  ➞ True
                                                                    LetterCheck("parses", "parsecs")  ➞ False
                                                                    
                                            
نظرات