forked from iphilka/hexlet-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
70 lines (62 loc) · 2.19 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import _ from 'lodash';
export default function solution(content){
// BEGIN
const data = content.split(`\n`)
.map((town) => town.split(','))
.slice(1, -1)
.map((eachTown) => {
const townObj = {
date: eachTown[0],
MaxTemperature: eachTown[1],
MinTemperature: eachTown[2],
Humidity: eachTown[3],
Pressure: eachTown[4],
WindSpeed: eachTown[5],
WindDirection: eachTown[6],
CityState: eachTown[7],
TimeZone: eachTown[8],
};
return townObj;
})
//STEP 1
const count = data.length;
console.log(`Count: ${count}`);
//STEP 2
const towns = data.map((town) => town.CityState);
const uniqTowns = _.uniq(towns);
const sortTowns = _.sortBy(uniqTowns);
console.log(`Cities: ${sortTowns.join(', ')}`);
//STEP 3
const hum = data.flatMap((town) => town.Humidity);
const uniqHum = _.uniq(hum);
const sortUniqHum= _.sortBy(uniqHum);
console.log(`Humidity: Min: ${sortUniqHum[0]}, Max: ${sortUniqHum.at(-1)}`);
//STEP 4
const temp = data.flatMap((town) => {
return [town.MaxTemperature, town.MinTemperature];
});
const uniqTemp = _.uniq(temp);
const sortUniqTemp = _.sortBy(uniqTemp);
const cities = data.filter((town) => town.MaxTemperature === sortUniqTemp.at(-1));
console.log(`HottestDay: ${cities[0]['date']} ${cities[0]['CityState']}`);
//STEP 5
const dates = data.map((town) => town.date);
const uniqDates = _.uniq(dates).sort();
const countDates = uniqDates.length;
let result = [];
for (const city of sortTowns) {
const maxTemp = data
.filter(({CityState}) => CityState === city)
.map(({MaxTemperature}) => MaxTemperature)
.reduce((acc, temp) => {
return acc + Number(temp);
}, 0);
const avgTemp = maxTemp / countDates;
result.push([avgTemp, city]);
};
const onlyAvg = result.map(([temp, ]) => temp);
const maxAvgNum = _.max(onlyAvg);
const hotttestCity = result.filter(([temp,]) => temp === maxAvgNum);
console.log(`HottestCity: ${hotttestCity[0][1]}`);
// END
}