Project Description: For this project, a sprite asks the player to choose a number, and then the sprite will guess the number until it gets the number correct.
Project Link: https://scratch.mit.edu/projects/1245180841
Description of Binary Search: The binary search in my guessing game is coded to guess the half of two remaining possible numbers. (For example if the range is 1-4 then the code will guess 2) If the secret number is higher, then the code will eliminate the bottom half. If the secret number is lower, then the code will eliminate the upper half.