카타 7급 Isograms

Jmnote (토론 | 기여)님의 2019년 3월 28일 (목) 22:16 판

C

#include <stdbool.h>
bool IsIsogram(char *str) 
{
  bool table[100] = {0};
  while(*str) {
    char c = toupper(*str);
    if( table[c] ) return false;
    table[c] = true;
    str++;
  }
  return true;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}