These are the Kickstarter Engineering and Data role definitions for both teams.
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
// Coroutine - CPU 상태를 Check 하지 않기 때문에 거의 공짜! | |
/* | |
Asynchronous of non-blocking programming 제공 | |
dependencies 추가 필요함 | |
*/ | |
private suspend fun MutableList<Int>.sum(): Int = this.sumBy {it} | |
@Test |
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
import os | |
import sys | |
import datetime | |
if len(sys.argv) <= 1: | |
print("No dir") | |
else: | |
for target in sys.argv[1:]: | |
os.chdir(target) | |
allfiles = os.listdir(target) |