void main std::wstring sort(const std::wstring &s)
{
		std::vector<wchar_t> content = s.toCharArray();
		Arrays::sort(content);
		return std::wstring(content);
}