All Questions
2 questions
10
votes
2
answers
32k
views
Converting std::chrono::time_point to/from std::string
Consider these functions that allow to convert std::chrono::time_point to/from std::string with a predefined date-time format.
<...
7
votes
4
answers
1k
views
Better way to repeatedly use istringstream in "counting minutes" challenge
I was doing this easy challenge "Counting Minutes I" from Coderbyte.com where you just calculate the number of minutes between two given times.
The second time is always after the first, although it ...