如何查找符號在字符串中重複的次數?如何查找符號在字符串中重複的次數Ruby
def duplicate_count(text)
t = text.downcase
t...
end
Test.assert_equals(duplicate_count("abc"), 0)
Test.assert_equals(duplicate_count("abcdeaa"), 1)
Test.assert_equals(duplicate_count("abcdeaB"), 2)
測試通過,謝謝。 –
@KirillZhuravlov用更好的版本更新了答案:) –