Selaa lähdekoodia

made a minor change in the question

Harsh Parikh 2 vuotta sitten
vanhempi
commit
446a28e306

+ 1 - 1
data_structures/arrays/interview_questions/array_interview_questions.ipynb

@@ -153,7 +153,7 @@
     "### Problem 4:\n",
     "Given a list, find out first and second highest value. Note: You cannot use `max()` or `sort()` functions.\n",
     "- Input: [5, 3, 1, 2, 4]\n",
-    "- Output: [4, 5]"
+    "- Output: [5, 4]"
    ]
   },
   {