mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
19 lines
435 B
C#
19 lines
435 B
C#
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;
|
|
}
|
|
}
|