Skip to content

Commit 4bf163f

Browse files
author
Vladimir Damov
committed
adding JS Fundamentals README.md
1 parent 329a03e commit 4bf163f

File tree

8 files changed

+285
-0
lines changed

8 files changed

+285
-0
lines changed

javascript-fundamentals/JS Fundamentals Exam - 10 June 2018/01. Travel Plans/README.md

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
# Problem 1 – Travel Plans
2+
3+
*Mariyka really wishes to go on a world trip, but so far she’s never had the chance and so she finally decided to give it a try. But as beginning she need to collect some money, right?*
4+
5+
Write a JavaScript program that calculates the **total amount** of **gold** Mariyka managed to collect. Mariyka is **specialized** in some professions, **average** in others and **clumsy** at yet others. Your program will receive an **array with professions and the amount of gold** for each activity. Mariyka is so good at her **Specialized** professions that **every second** customer of Specialized profession gives her **additional gold of cost: 200 gold right after she spend the gold mentioned below for candies**. She’s as well so bad at her **Clumsy** professions that every **second** customer from the Clumsy professions gives her **5% less** of the first given amount and **every third – 10%.**
6+
7+
Also, Mariyka is **spending 20% of every** activity she does that she’s **specialized** in, of course she spends them for candies.
8+
9+
Have in mind that Mariyka **does not** accept to work for **less** than **200 gold** in her **specialized** professions.
10+
11+
As **input **you will receive an array of strings.
12+
13+
Each string will consist of the following information with format:
14+
15+
**"Professions : Gold offered"**
16+
17+
Professions will be as follows:
18+
19+
Specialized:Programming, Hardware maintenance, Cooking, Translating, Designing.Average:Driving, Managing, Fishing, Gardening.
20+
21+
Clumsy:Singing, Accounting, Teaching, Exam-Making, Acting, Writing, Lecturing, Modeling, Nursing.
22+
23+
As **output** you need to print the **total cash** Mariyka has made.
24+
25+
**If** the amount is **less than 1000 gold** , she need to collect more gold until she get enough. Else she will be able to move to the next task and start planning her travel!
26+
27+
### Input
28+
29+
You will receive **one argument– **an **array strings **as shown above.
30+
31+
### Output
32+
33+
Print on the **console** the total amount of **gold** and if Mariyka has collected **enough or not**.
34+
35+
The output should be **formatted** to the second delimiter.
36+
37+
### Constraints
38+
39+
* The **number** of **elements** in the** input argument** will be in range **[1..100] inclusive**
40+
41+
* There **will** be **no invalid** **input**
42+
43+
* There **will **be **no negative Gold**
44+
45+
### Examples
46+
47+
<table>
48+
<tr>
49+
<td>Input</td>
50+
</tr>
51+
<tr>
52+
<td>["Programming : 500", "Driving : 243", "Singing : 100", "Cooking : 199"]</td>
53+
</tr>
54+
<tr>
55+
<td>Output</td>
56+
</tr>
57+
<tr>
58+
<td>Final sum: 743.00
59+
Mariyka need to earn 257.00 gold more to continue in the next task.</td>
60+
</tr>
61+
</table>
62+
63+
64+
<table>
65+
<tr>
66+
<td>Input</td>
67+
</tr>
68+
<tr>
69+
<td>["Programming : 500", "Driving : 243.55", "Acting : 200", "Singing : 100", "Cooking : 199’, "Hardware maintenance : 800", "Gardening : 700", "Programming : 500"]</td>
70+
</tr>
71+
<tr>
72+
<td>Output</td>
73+
</tr>
74+
<tr>
75+
<td>Final sum: 2878.55
76+
Mariyka earned 1878.55 gold more.</td>
77+
</tr>
78+
</table>
79+
80+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
# Problem 2 – Travel Investigation
2+
3+
*Mariyka has gathered some money already and now it’s time for our next step. We need to make some investigation about the travel companies and pick some.*
4+
5+
Write a JavaScript program that finds **specific unique companies **in a text. We need to **filter** our text so that we **separate** the **valid** and **invalid** sentences. Our **companies** will be separated by **exact delimiter**. The **rest of the input** will be **strings** which will be the text we will have to filter.
6+
7+
As **input** we will receive **array of strings**. On the **first** index of our array we always will be given the **companies** which will be a string ** separated by** the given on the **second** index **delimiter,** **followed by the sentences** we need to process.
8+
9+
The companies will always be given **to lower.**
10+
11+
Each string will consist of the following information with format:
12+
13+
**[ "company1@, company2@, company3",**
14+
15+
**"@, “,**
16+
17+
**"some text company1 more text company2 some more text company3"]**
18+
19+
As **output** you need to print the **valid sentences in format – "ValidSentences" **followed by the numbered sentences each on a new line, a separator between the valid and invalid sentences in this case **30x”=“, **followed by the **“InvalidSentences” **each on a new line and numbered.
20+
21+
**Have in mind **that there might be case of **all** **Valid or all Invalid sentences.**
22+
23+
**We consider Valid, a sentence which has all of the companies.**
24+
25+
### Input
26+
27+
You will receive **one argument – **an **array strings **as shown above.
28+
29+
### Output
30+
31+
Print on the **console** the **Valid **sentences if you found any, the delimiter shown above and the **Invalid **sentences if you found any.
32+
33+
### Constraints
34+
35+
* The **number** of **sentences** in the** input argument** will be in range **[1..15] inclusive**
36+
37+
* There **will** be **no invalid** **input**
38+
39+
* There **will **be **no repeated companies**
40+
41+
### Examples
42+
43+
<table>
44+
<tr>
45+
<td>Input</td>
46+
</tr>
47+
<tr>
48+
<td>["bulgariatour@, minkatrans@, koftipochivkaltd",
49+
"@,",
50+
"Mincho e KoftiPochivkaLTD Tip 123 ve MinkaTrans BulgariaTour",
51+
"dqdo mraz some text but is KoftiPochivkaLTD MinkaTrans",
52+
"someone continues as no "]</td>
53+
</tr>
54+
<tr>
55+
<td>Output</td>
56+
</tr>
57+
<tr>
58+
<td>ValidSentences
59+
1.mincho e koftipochivkaltd tip 123 ve minkatrans bulgariaatour
60+
==============================
61+
InvalidSentences
62+
1. dqdo mraz some text but is koftipochivkaltd minkatrans
63+
2. someone continues as no</td>
64+
</tr>
65+
</table>
66+
67+
68+
<table>
69+
<tr>
70+
<td>Input</td>
71+
</tr>
72+
<tr>
73+
<td>["bulgariatour@, minkatrans@, koftipochivkaltd",
74+
"@,",
75+
"Mincho e KoftiPockivkaLTD Tip 123 ve MinkaTrans BulgariaTour",
76+
"We will koftipochivkaLTD travel e expenses no MinkaTrans mu e BulgariaTour",
77+
"dqdo BuLGariaTOUR mraz some text but is KoftiPochivkaLTD minkaTRANS"]</td>
78+
</tr>
79+
<tr>
80+
<td>Output</td>
81+
</tr>
82+
<tr>
83+
<td>ValidSentences
84+
1. mincho e koftipochivkaltd tip 123 ve minkatrans bulgariatour
85+
2. we will koftipochivkaltd traavel e expenses no minkatrans mu e bulgariatour
86+
3. dqdo bulgariatour mraz some text but is koftipochivkaltd minkatrans</td>
87+
</tr>
88+
</table>
89+
90+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# Problem 3 – Minke, decode
2+
3+
*Minka was kidnapped by some crazy coders just before her travel. They tasked her to decode her travel destination or she can’t go. She is in dire straits and you have to help her:*
4+
5+
You will recieve a **string** with the еncrypted message which contains **the encrypted country** and the code that need to be decrypted . The **country** will always **starts** with capital letter and **end** with capital letter. You’ll recieve char **starting point** and char **end points** with which you will decode the country.
6+
7+
Example for country is MolgarA which needs to become MoldovA
8+
9+
For **example** in the input we will recieve **char start point** **-3** which is the letter **g** and **char end point** **- 5** which is **r**. We need to **replace** everything from g to r with "dov" which will be given in the input aswell.
10+
11+
The final result must be **Moldova** (the last char needs to be lowered).
12+
13+
The second part is to **decode** **the numbers** from the **input string**. To extract the numbers from the input string you need to **match every three-digit number** (**whole** or **fractional**).
14+
15+
If the number is **fractional** you have to round it up. When you receive all maches they need to be decoded from **ascii to text** and print it next to the country **capitalized** and **separated by " =>** “.
16+
17+
## Input
18+
19+
* The input will consist of** array of strings, containing **4 strings:
20+
21+
* First is char **start point** for the country decoding:
22+
23+
* Second is char **end point** for the country decoding:
24+
25+
* Third is the **right word**:
26+
27+
* Fourth is the **encrypted text**:
28+
29+
## Constraints
30+
31+
* There will be always only one country in the input.
32+
33+
* The separator for the fractional num will always be dot
34+
35+
* All inputs in the array will be string
36+
37+
## Examples
38+
39+
<table>
40+
<tr>
41+
<td>Input</td>
42+
<td>Output</td>
43+
</tr>
44+
<tr>
45+
<td>["3", "5", "gar","114 sDfia 1, riDl10 confin$4%#ed117 likewise it humanity aTe114.223432 BultoriA - Varnd railLery101 an unpacked as he"]</td>
46+
<td>Bulgaria => Ruse</td>
47+
</tr>
48+
<tr>
49+
<td>["1", "4","loveni", "SerbiA 67 – sDf1d17ia aTe 1, 108 confin$4%#ed likewise it humanity Bulg35aria - VarnA railLery1a0s1 111 an unpacked as 109 he"]</td>
50+
<td>Slovenia => Lom</td>
51+
</tr>
52+
</table>
53+
54+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# Problem 4 – Travel Time
2+
3+
*It’s finally time for Mariykaь to organize her traveling plans. So far we already know that she wishes to go on a world trip and she already collected some money and made some useful research for the traveling destinations. To organize her plans and travel route she need your great help. So, let’s begin…..*
4+
5+
Write a JavaScript program that **collects** and **orders **information about traveling destinations.
6+
7+
As **input **you will receive an array of strings.
8+
9+
Each string will consist of the following information with format:
10+
11+
**"Country name > Town name > Travel cost"**
12+
13+
Country name will be unique string, Town name will also be unique string, Travel cost will be a number.
14+
15+
If you receive **the same** Town name twice, you should keep the **cheapest** offer. **Have in mind** that one Country may have **several **Towns to visit.
16+
17+
If you receive Town name starting with lower case letter ,you should make it to upper, as shown in the example above.
18+
19+
After you finish the organizational part, you need to let Mariyka know which destination point to visit first.. The order will be as follows: First sort Country names **alphabetically **and then sort Town names by **lowest** Travel cost.
20+
21+
### Input
22+
23+
You will receive **one argument– **an **array strings **as shown above.
24+
25+
### Output
26+
27+
Print on the **console** the information you’ve collected, **sorted **by the given rules,** formatted **as seen in the examples.
28+
29+
### Constraints
30+
31+
* The **number** of **elements** in the** input argument** will be in range **[1..100] inclusive**
32+
33+
* There **will** be **no invalid** **input**
34+
35+
* There **will **be **no negative Travel cost**
36+
37+
### Examples
38+
39+
<table>
40+
<tr>
41+
<td>Input</td>
42+
</tr>
43+
<tr>
44+
<td>["Bulgaria > Sofia > 500",
45+
"Bulgaria > Sopot > 800",
46+
"France > Paris > 2000",
47+
"Albania > Tirana > 1000",
48+
"Bulgaria > Sofia > 200" ]
49+
</td>
50+
</tr>
51+
<tr>
52+
<td>Output</td>
53+
</tr>
54+
<tr>
55+
<td>Albania -> Tirana -> 1000
56+
Bulgaria -> Sofia -> 200 Sopot -> 800
57+
France -> Paris -> 2000</td>
58+
</tr>
59+
</table>
60+
61+

0 commit comments

Comments
 (0)