sbool containsUmlaut1(S s) {
  for i over s:
    if ("äöüÄÖÜß".indexOf(s.charAt(i)) >= 0) true;
  false;
}