-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkora.dart
70 lines (43 loc) · 925 Bytes
/
kora.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// import 'demodata.dart';
// void main() {
// player.forEach((i) {
// num sums = sum(i['scores']);
// print(sums);
// });
// }
// num sum(Map<String, num> numbers) {
// num sums = 0;
// numbers.forEach((key, value) {
// sums += value;
// });
// return sums;
// }
// main() {
// test('ahmed', 20, isMarried: true, salary: 200);
// }
// test(String name, int age, {bool isMarried = false, int? salary}) {
// print('$name $age $isMarried $salary');
// }
// import 'demodata.dart';
// main() {
// player.forEach((i) {
// friendData(friend: i['fiends']);
// });
// }
// friendData({List? friend}) {
// print('$friend');
// }
main() {
List<num> y = [10, 20];
print(avg(y));
}
num avg(List<num> x) {
try{
num sum = x.reduce((value, element) => value + element);
num avg = sum / x.length;
return avg;
}catch(e) {
print(e);
return 404;
}
}