为了提高农场效率,陈经理决定引入人工智能系统帮助管理农场。他请你开发一个智能系统来完成牛只数量统计的任务。你需要编写一个程序,根据农场管理员输入的字符串 allocations 和 requirements ,判断 requirements 是否能全部由 allocations 中的字符构成。要求字符使用一一对应,即 allocations 中的每个字符只能在 requirements 中使用一次。
示例1

输入

"AB","AAB"

输出

"YES"
示例2

输入

"A","B"

输出

"NO"
示例3

输入

"AA","AB"

输出

"NO"

备注:
1 allocations 和 requirements 均由大写英文字母组成。
加载中...