This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
NOTE: I've removed code that I'm certain is irrelevant, things code that has nothing to do with the collection view. | |
"executive" is the view model that provides the cells' contents, their widths relative to the collection | |
view's width, and their heights relative to their widths. This collection view uses different cell types in different | |
sections. The cells that are misaligned are of the SelectableCollectionViewCell type. | |
*/ | |
// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
This is a screening question for potential hires. See the comment on | |
the register_persons function for how to answer this question. Please | |
share your response in a private github gist or an attachment. (Upwork | |
will remove the code's formatting if you simply paste it into a message.) | |
""" | |
import collections |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Created by Christopher Simmons on 12/6/16. | |
// | |
#pragma once | |
#include <chrono> | |
#include <map> | |
namespace doclily { |