تابعی بنویسید که یک متن را در ورودی بگیرد و تعداد حروف الفبا و اعداد موجود در متن را محاسبه کند.
نمونه ورودی و خروجی
countAll("Hello World") ➞ [['alphabet', '10'], ['number', '0']]
countAll("H3ll0 Wor1d") ➞ [['alphabet', '7'], ['number', '3']]
countAll("149990") ➞ [['alphabet', '0'], ['number', '6']]
countAll("Hello World") ➞ [['alphabet', '10'], ['number', '0']]
countAll("H3ll0 Wor1d") ➞ [['alphabet', '7'], ['number', '3']]
countAll("149990") ➞ [['alphabet', '0'], ['number', '6']]
نظرات