challenges

Some problem solving programming challenges, i have solved. Not all are here, but started adding them slowly.

This project is maintained by chankruze

Safety Deposit Boxes

You are robbing a bank, but you’re not taking everything. You are looking for a specific item in the safety deposit boxes and you are going to drill into each one in order to find your item. Once you find your item you can make your escape, but how long will it take you to get to that item?

Task

Determine the amount of time it will take you to find the item you are looking for if it takes you 5 minutes to drill into each box.

Input Format

A string that represent the items in each box that will be drilled in order (items are separated by a comma), and secondly, a string of which item you are looking for.

Output Format

An integer of the amount of time it will take for you to find your item.

Sample Input

'gold,diamonds,documents,Declaration of Independence,keys' 
'Declaration of Independence'

Sample Output

20

Explanation

It will take you 20 minutes before you drill into the 4th box, which contains your item, the Declaration of Independence.

Solutions

Language Solution
C not available
CPP not available
C# not available
Python available
Java not available
Ruby not available
Swift not available