From 7241053398e3a309a0d166e0544249bfc40263fa Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Mon, 12 Mar 2018 21:58:04 +0200 Subject: [PATCH] Update sortedLastIndex.md --- snippets/sortedLastIndex.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/sortedLastIndex.md b/snippets/sortedLastIndex.md index 88ba341e1..7f1a90bc7 100644 --- a/snippets/sortedLastIndex.md +++ b/snippets/sortedLastIndex.md @@ -14,5 +14,5 @@ const sortedLastIndex = (arr, n) => { ``` ```js -sortedLastIndex([10, 20, 30, 30, 40], 30); // 3 +sortedLastIndex([10, 20, 30, 30, 40], 30); // 4 ```