您的位置:首页 > 其它

[Haskell] CodeWars|Who likes it?

2017-10-04 16:44 253 查看
https://www.codewars.com/kata/5266876b8f4bf2da9b000362/haskell

题目

你可能知道Facebook的点赞系统(404网站)和其他页面。人们可以给一个博文、图片或其他内容点赞。我们希望构造一个文本并展示给用户谁给这篇博文点赞。

实现函数
likes :: [String] -> String
,输入由人名构成的字符串数组。返回值例子如下:

likes [] = "no one likes this"
likes ["Peter"] = "Peter likes this"
likes ["Jacob", "Alex"] = "Jacob and Alex like this"
likes ["Max", "John", "Mark"] = "Max, John and Mark like this"
likes ["Alex", "Jacob", "Mark", "Max"] = "Alex, Jacob and 2 others like this"


对于多于4个人名的情况,只需要改2 others里的数字即可(前面2个人名也要改。。)。

题解

没啥好讲的,pattern matching挺好用的。

module Likes where

likes :: [String] -> String
likes [] = "no one likes this"
likes [x] = x ++ " likes this"
likes [x, y] = x ++ " and " ++ y ++ " like this"
likes [x, y, z] = x ++ ", " ++ y ++ " and " ++ z ++ " like this"
likes (x:y:xs) = x ++ ", " ++ y ++ " and " ++ show (length xs) ++ " others like this"
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: