Skip to content

Instantly share code, notes, and snippets.

View andrejnano's full-sized avatar
🤹‍♂️
everything everywhere all at once

Andrej Nano andrejnano

🤹‍♂️
everything everywhere all at once
View GitHub Profile
@andrejnano
andrejnano / fizzbuzz.cpp
Last active August 29, 2017 18:08
[Fizzbuzz] example way of doing fizz-buzz problem
#include <iostream>
#include <string>
int main()
{
using namespace std;
for (int i = 0; i < 100; ++i)
{
string output;