"카타 7급 Isograms"의 두 판 사이의 차이

(새 문서: ==C== {{카타|7급|C|2}} <source lang='c'> </source>)
 
2번째 줄: 2번째 줄:
{{카타|7급|C|2}}
{{카타|7급|C|2}}
<source lang='c'>
<source lang='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;
}
</source>
</source>

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 }}