Created
April 9, 2020 16:48
-
-
Save nikgalushko/a85c17ff326c42dfd9b902d69ab23c98 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lexicographical_compare( | |
// ... все символы строки l ... | |
begin(l), end(l), | |
// ... со всеми символами строки r ... | |
begin(r), end(r), | |
// ..., используя в качестве компаратора сравнение отдельных символов без учёта регистра | |
[](char cl, char cr) { return tolower(cl) < tolower(cr); } | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment