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

Organizations

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

Block or report Vicfred

Report abuse

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

Report abuse
Vicfred/README.md

Programming Languages

Pinned Loading

  1. yougo yougo Public

    programming vocabulary in japanese

    16 2

  2. codeforces-haskell codeforces-haskell Public

    problems from codeforces solved in haskell

    Haskell 12

  3. chip8cpp chip8cpp Public

    Chip-8 Emulator in C++

    C++ 16 3

  4. kyopro kyopro Public

    Competitive programming solutions

    Haskell 37 11

  5. how many flips until n heads how 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>