Skip to content

Instantly share code, notes, and snippets.

@pdahl95
pdahl95 / Tatari_assets_rotations.csv
Created May 15, 2019 18:11
Tatati Hiring Homework
Start End Name
6:00 AM 12:00 PM Morning
12:00 PM 4:00 PM Afternoon
3:00 PM 8:00 PM Prime
@pdahl95
pdahl95 / main.cpp
Created June 5, 2018 01:24
Connect Four Game
#include <iostream>
#include <string>
using namespace std;
/*
Goal;
- Write “connect four” to print the game field (7x6):
- Two players will alternately choose a column (1 to 7), where they want to put a disc into it
- Then, after each turn, re-print the screen with the new situation of the game field.
- You can use “X” for player one and “G” for player 2 or whatever suits you best. After some
turns.