یک تابع ایجاد کنید که یک لیست از آیتم را گرفته و بررسی کند که آیا آخرین آیتم با بقیه لیست که به هم متصل شدهاند مطابقت دارد.
نمونه ورودی و خروجی
MatchLastItem(["rsq", "6hi", "g", "rsq6hig"]) ➞ True
MatchLastItem([1, 1, 1, "11"]) ➞ False
MatchLastItem([8, "thunder", True, "8thunderTrue"]) ➞ True
EXPECT_EQ(MatchLastItem({"rsq", "6hi", "g", "rsq6hig"}), true); EXPECT_EQ(MatchLastItem({1, 1, 1, "11"}), false); EXPECT_EQ(MatchLastItem({8, "thunder", true, "8thunderTrue"}), true);
نظرات