Consider a square sitting in Quadrant I as depicted in an example below:
This square is to be split into two regions (e.g., red and blue). Given the ratio between the two regions and the side of the square, determine the x coordinate of the line that splits the regions. The ratio between the regions (red to blue) is presented through the first two entries in the input. For example, if the ratio is 7 to 11, then these two numbers will be the first two numbers in the input. The last entry is the side of the square.
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers77
Suggested Problems
-
2278 Solvers
-
Find the largest value in the 3D matrix
1677 Solvers
-
Return the first and last characters of a character array
12238 Solvers
-
Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
944 Solvers
-
5835 Solvers
More from this Author180
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I get all correct answers, but still it shows tests 2 , 4 & 5 is not passed, even though values are same
@VBBV This is due to floating point arithmetic and rounding - the test suite is very strict. Try adapting your code.