Array Average

Medium

📝 Description

Calculate average of array elements

Input Format

List of numbers

Output Format

Average (float)

Constraints

1 ≤ array.length ≤ 1000

🔍 Sample Input

[10, 20, 30, 40]
            

✅ Sample Output

25.0
            

Code Editor

Please login to run and submit code.

Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run