查找数组中单词的最小和最大长度的最短方法
我有以下数组,
string[] words = { "cherry", "apple", "blueberry", "banana", "mango", "orange", "pineapple" };
我想找到 Max
和 Min
编号。字母表。例如,Max = 9
(对于菠萝)和Min = 5
(对于苹果)
这是执行此操作的最短方法。
I have following array
string[] words = { "cherry", "apple", "blueberry", "banana", "mango", "orange", "pineapple" };
I want to find the Max
and Min
no. of alphabets. e.g. Max = 9
(for pineapple) and Min = 5
(for apple)
Which is the shortest method to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Min 和 最多 方法:
You can use the Min and Max methods:
最有效的方法是简单地循环字符串:
The most efficient is to simply loop through the strings: