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