1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-19 14:16:55 +02:00
CodeWars/5kyu/scramblies/solution.cs

20 lines
435 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
public class Scramblies {
public static bool Scramble(string str1, string str2) {
var list = new List<char>(str1.ToCharArray());
list.Sort();
foreach (char letter in str2) {
if (list.Contains(letter)) {
list.Remove(letter);
} else {
return false;
}
}
return true;
}
}