diff options
Diffstat (limited to '6p44.cpp')
-rw-r--r-- | 6p44.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/6p44.cpp b/6p44.cpp new file mode 100644 index 0000000..06fb402 --- /dev/null +++ b/6p44.cpp @@ -0,0 +1,19 @@ +#include <iostream> + +/* + * + * 6.44 + * + * + */ + +inline bool isShorter(const std::string &s1, const std::string &s2) { + + return s1.size() < s2.size(); +} + +int main () { + + std::cout << (isShorter("1234", "12345") ? "True" : "False") << std::endl; + return 0; +} |