알고리즘 38 - Disemvowel Trolls
Q.
Trolls are attacking your comment section!
A common way to deal with this situation is to remove all of the vowels from the trolls' comments, neutralizing the threat.
Your task is to write a function that takes a string and return a new string with all vowels removed.
For example, the string "This website is for losers LOL!" would become "Ths wbst s fr lsrs LL!".
Note: for this kata y isn't considered a vowel.
A)
#include <string.h>
#include <stdlib.h>
int is_vowel(char c) {
if (c == 'a' || c == 'A'
|| c == 'e' || c == 'E'
|| c == 'i' || c == 'I'
|| c == 'o' || c == 'O'
|| c == 'u' || c == 'U')
return 1;
else
return 0;
}
char *disemvowel(const char *str) {
int num = 0;
for (int i = 0; str[i]; i++) {
if (is_vowel(str[i]))
num++;
}
char *ret = malloc(strlen(str) - num + 1);
int i = 0;
int j = 0;
while (str[i]) {
if (is_vowel(str[i])) {
i++;
continue;
}
ret[j++] = str[i++];
}
ret[j] = 0;
return ret;
}
#include <string.h>
#include <stdlib.h>
int is_vowel(char c) {
if (c == 'a' || c == 'A'
|| c == 'e' || c == 'E'
|| c == 'i' || c == 'I'
|| c == 'o' || c == 'O'
|| c == 'u' || c == 'U')
return 1;
else
return 0;
}
char *disemvowel(const char *str) {
int num = 0;
for (int i = 0; str[i]; i++) {
if (is_vowel(str[i]))
num++;
}
char *ret = malloc(strlen(str) - num + 1);
int i = 0;
int j = 0;
while (str[i]) {
if (is_vowel(str[i])) {
i++;
continue;
}
ret[j++] = str[i++];
}
ret[j] = 0;
return ret;
}
나보다 길게 푼 사람 못 봤다 ...^^ 진짜 문제 오천개는 풀어야겠다
Author And Source
이 문제에 관하여(알고리즘 38 - Disemvowel Trolls), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@tamagoyakii/알고리즘-38-Disemvowel-Trolls저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)