یک تابع بنویسید که دترمینان یک ماتریس 2 در 2 را محاسبه کند. دترمینان ماتریس زیر برابر است با:
Determinant = ad – bc
ماتریس نمونه:
[[a, b], [c, d]]
نمونه ورودی و خروجی
calc_determinant([[1, 2], [3, 4]]) ➞ -2
calc_determinant([[5, 3], [3, 1]]) ➞ -4
calc_determinant([[1, 1], [1, 1]]) ➞ 0
calc_determinant([[1, 2], [3, 4]]) ➞ -2
calc_determinant([[5, 3], [3, 1]]) ➞ -4
calc_determinant([[1, 1], [1, 1]]) ➞ 0
نظرات