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
def solve_me(solution): | |
res = solution() | |
del res | |
if res: | |
print("Solved") | |
solution = lambda: [ | |
g.write(b"\x09\x09\x09\x09") | |
for x, y, g in [ |
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
// | |
// CHALLENGE (work in pairs): | |
// Move from f(o) -> o.f() and sure that the code is CQS compliant. | |
// | |
// 1 | |
class CsvParser<T extends Lines> { | |
Collection<T> parse(File location) { | |
} |