From 72bbf96b8f614d792bbdf7ad687a8932e1aa32db Mon Sep 17 00:00:00 2001 From: Rohit Tanwar <31792358+kriadmin@users.noreply.github.com> Date: Mon, 1 Jan 2018 15:59:52 +0530 Subject: [PATCH] Resolve conflicts --- snippets/sortedIndex.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/sortedIndex.md b/snippets/sortedIndex.md index 8a514a0dd..f83da6ec0 100644 --- a/snippets/sortedIndex.md +++ b/snippets/sortedIndex.md @@ -14,6 +14,6 @@ const sortedIndex = (arr, n) => { ``` ```js -sortedIndex([5,3,2,1], 4); //1 +sortedIndex([5,3,2,1], 4); // 1 sortedIndex([30,50],40); // 1 ```