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

15번째 줄: 15번째 줄:
}
}
</source>
</source>
==같이 보기==
* [[무반복어]]

2019년 3월 28일 (목) 22:16 판

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

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}