- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
function compiledTest(ID, rank, memoryLimit, timeLimit, outputLimit, language, address){
this.ID = ID;
this.Rank = rank;
this.MemoryLimit = memoryLimit;
this.TimeLimit = timeLimit;
this.OutputLimit = outputLimit;
this.Language = language;
this.Address = address;
this.TestCases = new Array();
this.getAnswer = function() {
return document.getElementById(this.ID).value;
}
this.getScore = function() {
var res = service(
this.getAnswer(),
new this.allInfo(
this.Rank, this.MemoryLimit, this.TimeLimit, this.OutputLimit, this.Language, this.TestCases
),
this.Address
);
return res;
}
// Смотри здесь ))))))
this.allInfo = function(rank, memoryLimit, timeLimit, outputLimit, language, testCases) {
this.Rank = rank;
this.MemoryLimit = memoryLimit;
this.TimeLimit = timeLimit;
this.OutputLimit = outputLimit;
this.TestCases = testCases;
this.Language = language;
}
var c = arguments.length;
for (var i = 6; i < c; i++) {
this.TestCases.push(arguments[i]);
}
}
Собственноличний говнокод. Буквально на днях писал єтот джаваскрипт. И только теперь заметил УЕБИЩНОЙ КОД. Проект пишется на С#. Джаваскрипта мало, но есть - приходилось писать его двум веб-программистам (также занимались С#) но они уже закончили свою роботу и ушли з проекта. Вот скинули на меня поодержку скриптов ( я js писал давно, но единственний в команде, кто его вообще писал). Написал первое, что пришло в голову для решения задачи.