Closed pratik-choudhari closed 4 years ago
Hi, regarding the output of the example case mentioned, shouldn't the output be 224?
Can I work on it ?
@pratik-choudhari can you assign this to me? I can code in c++
I would like to work on this issue. Can you assign me for Java ?
@A-Annan Lang?
Hi @pratik-choudhari ,
The second test case is luxury 1 1
, which means the number of bed rooms is 1 and bathrooms is 1. In the explanation
section, you have considered the bedrooms and bathrooms as 3 and 1 respectively even for Luxury rooms (may be based on the 1st test case). Can you please clarify ?
@anshika0207 I mistakenly assigned you to this issue. You are already assigned to 2 issues which is the limit to this repository.
@gaurangagarwal @therealkiddo Mistake from my side, rectified now. Thanks for bringing that up!π
can you assign it to me. I can code in JAVA
Hi @pratik-choudhari Please assign me this task
@ShubhamNagure Lang
@ShubhamNagure Lang
Python3 or Java. Whichever you prefer.
@ShubhamNagure Lang
Python3 or Java. Whichever you prefer.
Hi @pratik-choudhari , Task completed. Please check and review #432 PR. Thanks for the opportunity.
Hi @pratik-choudhari , can you assign it to me for C++/JavaScript.
hi, can do it in java or javascript. Please assign.
@manojrao3619 C++ and @ananthalakshmiragi Js
Feature β
Description
A hotel has two types of room standard and luxury. Every customer mentions the number of bedrooms and bathrooms required for that particular room.
The task is to print the total cost of rooms requested.
Example
First line will be the number of test cases. Room data format
room-type bedrooms bathrooms
. There can be any number of standard and luxury rooms.Input: 2 standard 3 1 luxury 1 1
Output: 224
Explanation: Standard fee:
(5 * 3 + 2 * 1)
luxury:(5 * 1 + 2 * 1) + 200
total = standard + luxuryContributors are supposed to mention their coding language while asking for assignment