浏览代码

made a minor change in the question

Harsh Parikh 2 年之前
父节点
当前提交
446a28e306
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      data_structures/arrays/interview_questions/array_interview_questions.ipynb

+ 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]"
    ]
   },
   {