فهرست منبع

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