This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
Cats and a Mouse #101
Comments
I would like to solve this using python |
I would like to resolve this in java |
I would like to solve this problem in C. |
aman-chhetri
added a commit
to aman-chhetri/hacktoberfest
that referenced
this issue
Oct 23, 2022
Merged
Closed
i would like to solve this issue in c++ please assign me @ndrohith09 |
jaichiranjeeva
added a commit
to jaichiranjeeva/hacktoberfest
that referenced
this issue
Oct 24, 2022
resolves cognizance-amrita#101 Cats_And_Mouse issue in java
I would like to solve this problem using C#. |
@ndrohith09 can you please assign this issue to me? |
Merged
shubhangNarain
added a commit
to shubhangNarain/hacktoberfest-cognizance-amrita
that referenced
this issue
Oct 30, 2022
Merged
I would like to solve this problem using ruby |
mohan-warrior
added a commit
to mohan-warrior/hacktoberfest
that referenced
this issue
Oct 30, 2022
ndrohith09
added a commit
that referenced
this issue
Oct 30, 2022
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Two cats and a mouse are at various positions on a line. You will be given their starting positions. Your task is to determine which cat will reach the mouse first, assuming the mouse does not move and the cats travel at equal speed. If the cats arrive at the same time, the mouse will be allowed to move and it will escape while they fight.
You are given
q
queries in the form of ,x
, andy
representing the respective positions for catsA
andB
, and for mouse .C
Complete the functioncatAndMouse
to return the appropriate answer to each query, which will be printed on a new line.If cat
A
catches the mouse first, print Cat A.If cat
B
catches the mouse first, print Cat B.If both cats reach the mouse at the same time, print Mouse C as the two cats fight and mouse escapes.
Example
x = 2
y = 5
x = 4
The cats are at positions
2
(Cat A) and5
(Cat B), and the mouse is at position4
. Cat B, at position5
will arrive first since it is only1
unit away while the other is2
units away. Return 'Cat B'.Function Description
Complete the catAndMouse function in the editor below.
catAndMouse has the following parameter(s):
int x: Cat A's position
int y: Cat B's position
int z: Mouse C's position
Returns
string: Either 'Cat A', 'Cat B', or 'Mouse C'
Input Format
The first line contains a single integer,
q
, denoting the number of queries.Each of the
q
subsequent lines contains three space-separated integers describing the respective values ofx
(cat A's location),y
(cat B's location), andz
(mouse C's location).Constraints
Sample Input 0
Sample Output 0
Explanation 0
Query 0: The positions of the cats and mouse are shown below: image
Cat B will catch the mouse first, so we print Cat B on a new line.
Query 1: In this query, cats A and B reach mouse C at the exact same time: image
Because the mouse escapes, we print Mouse C on a new line.
The text was updated successfully, but these errors were encountered: