2511회 채점 완료
This commit is contained in:
@@ -11,17 +11,17 @@ const getGpdpScore = require('./gpdpScoring.js');
|
||||
const getToday = require('./getToday.js');
|
||||
const todayDate = getToday();
|
||||
|
||||
const examRound = '2510';
|
||||
const examRound = '2511';
|
||||
|
||||
const codeTypes = [
|
||||
// 'DIC',
|
||||
'DIC',
|
||||
'DPI',
|
||||
];
|
||||
|
||||
const examTypes = [
|
||||
// 'A',
|
||||
// 'B',
|
||||
'C',
|
||||
'A',
|
||||
'B',
|
||||
// 'C',
|
||||
// 'D'
|
||||
];
|
||||
|
||||
@@ -33,7 +33,7 @@ const outputExcelFiles = [];
|
||||
codeTypes.forEach(codeType => {
|
||||
examTypes.forEach(type => {
|
||||
const jsonPath = `./${codeType}_${examRound}${type}.json`
|
||||
if (!fs.existsSync(jsonPath)) return;
|
||||
if (!fs.existsSync(jsonPath)) return
|
||||
const scoringJson = require(jsonPath);
|
||||
const answerFilesDir = `./output/${examRound}/${type}/${testMode ? 'TEST' : codeType}`;
|
||||
let outputExcelFile = `./${todayDate}_${codeType}_${examRound}${type}_채점결과.xlsx`;
|
||||
|
||||
Reference in New Issue
Block a user