Skip to content

Commit 097ccc8

Browse files
committed
cleanup code needed
1 parent 1277bbe commit 097ccc8

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

4_Problems/1_22_NumPy.ipynb

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626
"outputs": [],
2727
"source": [
2828
"# Code Needed\n",
29-
"import numpy as np\n",
30-
"applications = np.array([10, 15, 7, 20, 25, 30, 5])"
29+
"applications_list = [10, 15, 7, 20, 25, 30, 5]"
3130
]
3231
},
3332
{
@@ -54,8 +53,7 @@
5453
"outputs": [],
5554
"source": [
5655
"# Code Needed\n",
57-
"import numpy as np\n",
58-
"postings = np.array( [10, 15, 7, 20, 25, 30, 5])"
56+
"postings_list = [10, 15, 7, 20, 25, 30, 5]"
5957
]
6058
},
6159
{
@@ -82,8 +80,7 @@
8280
"outputs": [],
8381
"source": [
8482
"# Code Needed\n",
85-
"import numpy as np\n",
86-
"salaries = np.array([70000, 85000, 60000, 95000, 80000])"
83+
"salaries_list = [70000, 85000, 60000, 95000, 80000]"
8784
]
8885
},
8986
{
@@ -95,7 +92,11 @@
9592
]
9693
}
9794
],
98-
"metadata": {},
95+
"metadata": {
96+
"language_info": {
97+
"name": "python"
98+
}
99+
},
99100
"nbformat": 4,
100101
"nbformat_minor": 5
101102
}

0 commit comments

Comments
 (0)