소스 검색

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