kunal-kushwaha / DSA-Bootcamp-Java

This repository consists of the code samples, assignments, and notes for the Java data structures & algorithms + interview preparation bootcamp of WeMakeDevs.
https://www.youtube.com/playlist?list=PL9gnSGHSqcnr_DxHsP7AW9ftq0AtAyYqJ
16.76k stars 10.85k forks source link

feat:added new feature to handle the index out of bound exception in infinite array problem #1145

Open Sahilkumar19 opened 1 year ago

Sahilkumar19 commented 1 year ago

fix #1144 this PR fixes the index out of bound exception in infinite array searching for a target. this is fixed using try and catch block when our end will be greater than arr.length-1.

mergify[bot] commented 1 year ago

:warning: The sha of the head commit of this PR conflicts with #1141. Mergify cannot evaluate rules on this PR. :warning:

Sahilkumar19 commented 1 year ago

⚠️ The sha of the head commit of this PR conflicts with #1141. Mergify cannot evaluate rules on this PR. ⚠️

can i edit it ?

Sahilkumar19 commented 11 months ago

⚠️ The sha of the head commit of this PR conflicts with #1141. Mergify cannot evaluate rules on this PR. ⚠️

now i have closed that PR

Sahilkumar19 commented 11 months ago

fix https://github.com/kunal-kushwaha/DSA-Bootcamp-Java/issues/1144 this PR fixes the index out of bound exception in infinite array searching for a target. this is fixed using try and catch block when our end will be greater than arr.length-1.