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

Block or report Vicfred

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 GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Vicfred/README.md

Programming Languages

Pinned

  1. yougo yougo Public

    programming vocabulary in japanese

    15 2

  2. codeforces-haskell codeforces-haskell Public

    problems from codeforces solved in haskell

    Haskell 11

  3. chip8cpp chip8cpp Public

    Chip-8 Emulator in C++

    C++ 14 3

  4. kyopro kyopro Public

    Competitive programming solutions

    C++ 35 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>