이것은 다소 쉬운 도전입니다.
도전
입력은 null
최대 길이 100 의 문자열 ( 비어 있거나 비어 있지 않음 )을 포함합니다. 문자열의 각 단어에있는 모음 수를 공백으로 구분하여 출력합니다.
규칙
- 문자열의 길이는 100 자 이하 여야합니다.
- 문자열은 알파벳이 포함됩니다
A-Z
,a-z
또한 공간을 포함 할 수 있습니다. stdin
또는 명령 줄 인수 에서 입력을 사용해야합니다 .- 에 출력이 출력되어야합니다
stdout
. - 전체 프로그램 또는에서 입력을
stdin
받아 결과를 출력 하는 함수를 작성할 수 있습니다 . - 프로그램 / 기능이 계산해야하는 모음은
aeiou
및AEIOU
입니다.
테스트 사례
This is the first test case --> 1 1 1 1 1 2
one plus two equals three --> 2 1 1 3 2
aeiou AEIOU --> 5 5
psst --> 0
the quick brown fox jumped over the lazy dog --> 1 2 1 1 2 2 1 1 1
채점
이것은 code-golf 이므로 가장 짧은 제출 (바이트)이 이깁니다.
stdin
과 함께 stdout
. 함수 인수를 통해 "입력"을 원하지 않습니다. 명령 줄 인수는 괜찮아 보입니다. 게시물에 추가했습니다.
The name "vowel" is often used for the symbols that represent vowel sounds in a language's writing system, particularly if the language uses an alphabet. In writing systems based on the Latin alphabet, the letters A, E, I, O, U, and sometimes Y are all used to represent vowels. However, not all of these letters represent vowels in all languages.
모음이란 무엇입니까?