13 lines
240 B
C++
13 lines
240 B
C++
//
|
|
// Created by grimmauld on 25.02.24.
|
|
//
|
|
|
|
#include <iostream>
|
|
#include <algorithm>
|
|
#include <cctype>
|
|
#include <string>
|
|
|
|
inline void trim(std::string & s) {
|
|
s.erase(std::remove_if(s.begin(), s.end(), ::isspace),
|
|
s.end());
|
|
} |