Updated helper script
This commit is contained in:
3
CT.rb
3
CT.rb
@ -24,7 +24,8 @@ if(ARGV[1] == 'table')
|
|||||||
|
|
||||||
rows = []
|
rows = []
|
||||||
entry.each do |e|
|
entry.each do |e|
|
||||||
row = [e['code'],e['title'],e['solved']]
|
solvedstring = (e['solved'] == 0) ? "No" : "Yes("+e['solved'].to_s+")"
|
||||||
|
row = [e['code'],e['title'],solvedstring]
|
||||||
rows << row
|
rows << row
|
||||||
end
|
end
|
||||||
table = Terminal::Table.new(:headings => ['Code','Title','Solved'],:rows => rows)
|
table = Terminal::Table.new(:headings => ['Code','Title','Solved'],:rows => rows)
|
||||||
|
Reference in New Issue
Block a user