Find the smallest integer in the array with Ruby #ruby #rails #100daysofcode #codenewbie Andrew ⚛️ & ☕ Sep 1, 2020 ・1 min read Discussion (4) Subscribe Image Upload image Templates Templates Editor guide Personal Moderator Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Collapse Expand Steve Alex • Sep 2 '20 Dropdown menu Copy link Hide Whats wrong with a = [-1,1,4,5,6,9] irb(main):005:0> a.min => -1 Collapse Expand Andrew ⚛️ & ☕ Author • Sep 2 '20 Dropdown menu Copy link Hide Hi Steve! In solution #2 I use a.min def find_smallest_int(arr) arr.min end And in my opinion, this is the best one. You can see all of my solutions here: losseff.xyz/katas/008-find-the-sma... Collapse Expand Steve Alex • Sep 2 '20 Dropdown menu Copy link Hide Sorry, I didn't see that one - screen too small. I just heard a couple loop solutions. Andrew ⚛️ & ☕ Author • Sep 2 '20 Dropdown menu Copy link Hide 👍 Thanks for the feedback! I'll use bigger font size and will give more info about all approaches before writing the code. Code of Conduct • Report abuse
Discussion (4)
Whats wrong with
a = [-1,1,4,5,6,9]
irb(main):005:0> a.min
=> -1
Hi Steve!
In solution #2 I use a.min
And in my opinion, this is the best one.
You can see all of my solutions here: losseff.xyz/katas/008-find-the-sma...
Sorry, I didn't see that one - screen too small. I just heard a couple loop solutions.
👍
Thanks for the feedback!
I'll use bigger font size and will give more info about all approaches before writing the code.