This repository contains a website that converts binary numbers to decimal using two methods: Brute Force and Divide and Conquer.
- Divide and Conquer: This method breaks the conversion process into smaller sub-problems, then combines the results to get the final solution. This method is more efficient in terms of computational time, especially for large-scale inputs.
- Brute Force: A traditional method that iteratively converts binary numbers into decimal through direct calculations.
- Open the conversion website.
- Enter the binary number you want to convert.
- The conversion result will be displayed in decimal format.
- HTML
- CSS
- JavaScript
Access the web application here: Binary to Decimal Converter