cognizance-amrita / hacktoberfest

An initiative to promote Hacktoberfest
MIT License
0 stars 35 forks source link

Cats and a Mouse #101

Open ndrohith09 opened 1 year ago

ndrohith09 commented 1 year ago

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 , and y representing the respective positions for cats A and B , and for mouse .C Complete the function catAndMouse 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) and 5 (Cat B), and the mouse is at position 4. Cat B, at position 5 will arrive first since it is only 1 unit away while the other is 2 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 of x (cat A's location), y (cat B's location), and z(mouse C's location).

Constraints

image

Sample Input 0

2
1 2 3
1 3 2

Sample Output 0

Cat B
Mouse C

Explanation 0

Query 0: The positions of the cats and mouse are shown below: image 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 image

Because the mouse escapes, we print Mouse C on a new line.

Gamer5262 commented 1 year ago

I would like to solve this using python

jaichiranjeeva commented 1 year ago

I would like to resolve this in java

aman-chhetri commented 1 year ago

I would like to solve this problem in C.

likhi-23 commented 1 year ago

i would like to solve this issue in c++ please assign me @ndrohith09

art-rauniyar commented 1 year ago

I would like to solve this problem using C#.

shubhangNarain commented 1 year ago

@ndrohith09 can you please assign this issue to me?

mohan-warrior commented 1 year ago

I would like to solve this problem using ruby