You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the max of a list of lines is the lexicographically last, for example if there's a single line in the file that starts with a z, it's quite likely to be the "max" even though it could be just one letter long.
instead, you want to use .max(*.chars), which will compare the number of characters of all lines to find the longest line.
The text was updated successfully, but these errors were encountered:
the max of a list of lines is the lexicographically last, for example if there's a single line in the file that starts with a z, it's quite likely to be the "max" even though it could be just one letter long.
instead, you want to use .max(*.chars), which will compare the number of characters of all lines to find the longest line.
The text was updated successfully, but these errors were encountered: