BInary search 05-rotated array

https://online.codingblocks.com/player/15089/content/81?s=3206
There is a lot of confusion at 13:42 sec,as here we have a[mid]<key so start should got to mid+1, but you are saying different , please avoid these confusions

Hey Tushar, here we have a rotated array and we are finding where will 5 lie, as it can lie between mid and end(1 and 3) that’s why we shifted end to mid-1(6).