user = SkillUser.find_all_by_skill_id(skill_id)
user.size
gives me: 1 2 2 1 3 1 3 1 3 2 1 1 3
How can I get the biggest value (in this case 3) out of this row of numbers?
Thanks for help
gives me: 1 2 2 1 3 1 3 1 3 2 1 1 3 How can I get the biggest value (in this case 3) out of this row of numbers? Thanks for help |
|||
|
|
|
You can use the
If you want the maximum of an attribute called If you want to count the number of users per skill id, try:
This gives you both the skill_id and the number of users for the skill with most users. For a more efficient way (by doing the whole calculation in SQL), try:
Be aware that |
|||||||||||
|
|
You should use ActiveRecord::Calculations http://ar.rubyonrails.org/classes/ActiveRecord/Calculations/ClassMethods.html for performance reasons
|
|||
|
|
Explanations: to 1. Doing it this way, you just have to pick each value in the list exactly once and compare it once to the maximum so-far. to 2. Sorting costs O(n*log n) ops in the average if you got a list with n entries. Obviously this is more than the O(n) in solution 1., but you get a bit more to 3. Well.. I prefer knowing what happens, but your preferences might vary |
|||
|
|