We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2ce1ce commit 6a09262Copy full SHA for 6a09262
.gitignore
@@ -29,3 +29,4 @@
29
/15/README.md
30
/54/README.md
31
/209/README.md
32
+/210/README.md
210/annotations.py
@@ -0,0 +1,13 @@
1
+from typing import List
2
+
3
4
+def sum_numbers(numbers: List[int]):
5
+ """Sums numbers
6
7
+ :param numbers: a list of numbers
8
+ :type numbers: list
9
+ :raises TypeError: if not all numeric values passed in
10
+ :return: sum of numbers
11
+ :rtype: int
12
+ """
13
+ pass
210/test_annotations.py
@@ -0,0 +1 @@
+# tests are hidden for this Bite
0 commit comments