السلام عليكم
ده المسائل من موقع codewars
Complete the function that takes a non-negative integer n as input, and returns a list of all the powers of 2 with the exponent ranging from 0 to n ( inclusive ).
وده الكود بتاعي
import numpy as np
def power_of_two(n):
if n >= 0:
arenge = np.arange(0 , n+1)
power_two = np.power(2 , arenge)
return list(power_two)
print(power_of_two(100))
ام بظغط علي TEST كل صح تمام هنا مفيش مشكله
المشكله بقا ام بظغط علي ATTEMPT بيظهر مشكله انا مش فهم سببها اي مع ان انا شيف ان الكود كويس جدا
هو ليه ام رقم n يكون كبير بيظهر في النتجيه البرنامج اصفر في اخر المضفوف