This project provides a function to evaluate binary strings based on specific criteria, determining whether they are classified as 'good'. A binary string is considered 'good' if it satisfies the following conditions:
- It contains an equal number of '0's and '1's.
- For every prefix of the string, the number of '1's is not less than the number of '0's.
- .NET Core SDK (version 3.1 or higher)
The core functionality is implemented in the Function
class, which contains the following method:
-
Parameters:
binaryString
: A string containing only '0's and '1's.
-
Returns:
bool
: Returnstrue
if the string is 'good'; otherwise, returnsfalse
.
bool result = Function.IsGoodBinaryString("1100"); // returns true