Message335704
> We can return the smallest value from the **table** instead
> of the code below.
Internally, that does too much work and then throws most of it away.
The difference between Counter(data).most_common()[1] and Counter(data).most_common(1) is that the former materializes the entire items iterator into a list and does a full sort, while the latter is memory friendly and makes a single pass with min(). |
|
| Date |
User |
Action |
Args |
| 2019-02-16 17:44:35 | rhettinger | set | recipients:
+ rhettinger, steven.daprano, francismb, Windson Yang |
| 2019-02-16 17:44:35 | rhettinger | set | messageid: <[email protected]> |
| 2019-02-16 17:44:35 | rhettinger | link | issue35892 messages |
| 2019-02-16 17:44:35 | rhettinger | create | |
|