View Vicfred's full-sized avatar
:octocat:
I like mathemagic and computering

Organizations

@EpicGames @Mundo-enfermo-y-triste @cppmexico @Google-Language-Friends
Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. yougoyougoPublic

    programming vocabulary in japanese

    16 2

  2. codeforces-haskellcodeforces-haskellPublic

    problems from codeforces solved in haskell

    Haskell 11

  3. chip8cppchip8cppPublic

    Chip-8 Emulator in C++

    C++ 14 3

  4. kyoprokyoproPublic

    Competitive programming solutions

    Haskell 37 11

  5. how many flips until n headshow many flips until n heads
    1
    // How many times do you have to flip a coin
    2
    // to get n heads?
    3
    #include <random>
    4
    #include <iostream>
    5
  6. pi approximation using random points...pi approximation using random points in a circle
    1
    // approximate pi using random points in a square
    2
    // compile using: g++ pi.cpp -o pi
    3
    // and then run using: ./pi
    4
    #include <iostream>
    5
    #include <iomanip>