You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
255 B
14 lines
255 B
5 years ago
|
# 编程内容
|
||
|
json.(@hack, :name, :description, :language, :code)
|
||
|
|
||
|
# 代码
|
||
|
json.language @hack.language
|
||
|
json.code @hack.code
|
||
|
|
||
|
# 测试集
|
||
|
json.hack_sets do
|
||
|
json.array! @hack.hack_sets do |set|
|
||
|
json.(set, :id, :input, :output, :position)
|
||
|
end
|
||
|
end
|