Skip to content

Instantly share code, notes, and snippets.

View bwedding's full-sized avatar

bwedding

  • Sweden
View GitHub Profile
@bwedding
bwedding / reverseString.cpp
Last active April 28, 2024 22:12
Compare hand-rolled strrev vs std::reverse
#include <iostream>
#include <cstdio>
#include <cstring>
#include <string>
#include <chrono>
#include <random>
#include <ranges>
#include <algorithm>
#include <string_view>