不使用循环计算单词数

发布于 2025-01-08 21:09:30 字数 201 浏览 0 评论 0原文

我有一个关于 Ruby 的问题:

给定一个输入字符串,我需要返回一个散列,其键是字符串中的单词,其值是每个单词出现的次数。重要提示:我不能使用 for 循环。

示例:“今天是日出” 输出:{'Today'=>1, 'is'=>1, 'a'=>2, 'day' =>1, 'sunrise'=>1}

你能帮我吗?

I have a question about Ruby:

Given an input string, I need to return a hash, whose keys are words in the string and whose values are the number of times each word appears. IMPORTANT: I must not use for-loops.

Example: "Today is a day, a sunrise"
Output: {'Today'=>1, 'is'=>1, 'a'=>2, 'day' =>1, 'sunrise'=>1}

Can you help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

能怎样 2025-01-15 21:09:30

尝试这样的事情:

def count_words_without_loops(string)
  res = Hash.new(0)
  string.downcase.scan(/\w+/).map{|word| res[word] = string.downcase.scan(/\b#{word}\b/).size}
  return res
end

Try something like this:

def count_words_without_loops(string)
  res = Hash.new(0)
  string.downcase.scan(/\w+/).map{|word| res[word] = string.downcase.scan(/\b#{word}\b/).size}
  return res
end
つ可否回来 2025-01-15 21:09:30
h = Hash.new(0)
"Today is a day, a sunrise".scan(/\w+/) do |w|
  h[w] += 1
end

p h # {"Today"=>1, "is"=>1, "a"=>2, "day"=>1, "sunrise"=>1}
h = Hash.new(0)
"Today is a day, a sunrise".scan(/\w+/) do |w|
  h[w] += 1
end

p h # {"Today"=>1, "is"=>1, "a"=>2, "day"=>1, "sunrise"=>1}
贩梦商人 2025-01-15 21:09:30

如果您有 for 循环约束,请使用递归!
只是不要忘记有一个停止条件。

If you have a for-loop constraint, go recursion!
Just don't forget to have a stop condition.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文