kun 19/10/11 17
BIN
static/img/apple.png
Normal file
|
After Width: | Height: | Size: 6.9 KiB |
|
Before Width: | Height: | Size: 694 B After Width: | Height: | Size: 345 B |
|
Before Width: | Height: | Size: 719 B After Width: | Height: | Size: 345 B |
|
Before Width: | Height: | Size: 8.4 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 381 B After Width: | Height: | Size: 344 B |
|
Before Width: | Height: | Size: 712 B After Width: | Height: | Size: 517 B |
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 37 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 644 B |
|
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 303 KiB After Width: | Height: | Size: 103 KiB |
|
Before Width: | Height: | Size: 470 KiB After Width: | Height: | Size: 188 KiB |
|
Before Width: | Height: | Size: 576 B After Width: | Height: | Size: 367 B |
|
Before Width: | Height: | Size: 547 KiB After Width: | Height: | Size: 220 KiB |
|
Before Width: | Height: | Size: 454 KiB After Width: | Height: | Size: 230 KiB |
|
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 27 KiB |
|
Before Width: | Height: | Size: 134 KiB After Width: | Height: | Size: 37 KiB |
|
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 565 KiB After Width: | Height: | Size: 157 KiB |
|
Before Width: | Height: | Size: 412 B After Width: | Height: | Size: 329 B |
|
Before Width: | Height: | Size: 8.5 KiB After Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 327 B After Width: | Height: | Size: 297 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 591 B |
|
Before Width: | Height: | Size: 768 B After Width: | Height: | Size: 489 B |
|
Before Width: | Height: | Size: 253 B After Width: | Height: | Size: 197 B |
|
Before Width: | Height: | Size: 581 B After Width: | Height: | Size: 449 B |
@@ -68,34 +68,6 @@ let tool = {
|
||||
}
|
||||
})
|
||||
return [...map.values()]
|
||||
},
|
||||
|
||||
classifier: function (array, val) {
|
||||
let map = {}
|
||||
let dest = []
|
||||
let len = array.length
|
||||
for (let i = 0; i < len; i++) {
|
||||
let ai = array[i]
|
||||
if (!map[ai.val]) {
|
||||
dest.push({
|
||||
val: ai.val,
|
||||
data: [ai]
|
||||
})
|
||||
map[ai.val] = ai
|
||||
} else {
|
||||
// eslint-disable-next-line camelcase
|
||||
let dest_len = dest.length
|
||||
// eslint-disable-next-line camelcase
|
||||
for (let j = 0; j < dest_len; j++) {
|
||||
let dj = dest[j]
|
||||
if (dj.val === ai.val) {
|
||||
dj.data.push(ai)
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return dest
|
||||
}
|
||||
}
|
||||
|
||||
|
||||