Namita Singh

Results 3 issues of Namita Singh

Since React 17+, importing React for JSX is no longer needed. We can safely remove import React from 'react' to clean up the component.

Cleaned up Todo component by removing unused React import. This is no longer required in React 17+ and above. Helps keep the codebase tidy.

## Description - Added two proper C++ implementations of Binary Search: - **Iterative approach:** Input and search logic separated into `main` and function. - **Recursive approach:** Input and search logic...