Template:ClassMatrix: Difference between revisions

No edit summary
No edit summary
Line 42: Line 42:
<BR>
<BR>
{{#var:Y-AXIS}}
{{#var:Y-AXIS}}
{|
|-
! {{#repeat:ClassMatrix/CreateHeader|2|{{#var:Y-AXIS}}}}
|-
|}

Revision as of 05:02, 18 December 2008




{{#lua:

 local H = {};
 local T = {};
 for id in stdin:gmatch("%w+") do
   str = string.sub(id,{{{2}}},{{{3}}});
   if (H[str] == nil)
     then H[str] = 1; table.insert(T, str);
     else H[str] = H[str] + 1;
   end
 end
 table.sort(T);
 for i=1,table.getn(T) do
   local k = T[i];
   print(k .. " " .. H[k]);
 end

| }}
{{#lua:

 local H = {};
 local T = {};
 for id in stdin:gmatch("%w+") do
   str = string.sub(id,{{{4}}},{{{5}}});
   if (H[str] == nil)
     then H[str] = 1; table.insert(T, str);
     else H[str] = H[str] + 1;
   end
 end
 table.sort(T);
 for i=1,table.getn(T) do
   local k = T[i];
   print(k .. " " .. H[k]);
 end

| }}


( local H = {};}}! for (id in stdin:gmatch("%w+") do) {{{1}}} () {{{1}}} () end () table.sort(T); () print(k (.. " " .. H[k]);) end () ())