摘要:
简单题目 1 class Solution { 2 public: 3 int lengthOfLastWord(const char *s) { 4 // IMPORTANT: Please reset any member data you declared, as 5 // the same Solution instance will be reused for each test case. 6 int ans = 0; 7 int len = 0; 8 while (*s != '\0' && ... 阅读全文
摘要:
refer to wikipedia---1NF(first normal form):1. There's no top-to-bottom ordering to the rows.2.There's no left-to-right ordering to the columns.3.There are no duplicate rows.4.Every row-and-column intersection contains exactly one value from the applicable domain (and nothing else).5.All col 阅读全文