1、创建空表
mysql> CREATE TABLE test ( id int(4) NOT NULL AUTO_INCREMENT, name char(20) NOT NULL, PRIMARY KEY (id) ) ENGINEInnoDB DEFAULT CHARSETlatin1;AUTO_INCREMENT:自增,下次插入数据,会自动增加ID的值,…
大纲 题目地址内容 解题代码地址 题目
地址
https://leetcode.com/problems/find-the-encrypted-string/description/
内容
You are given a string s and an integer k. Encrypt the string using the following algorithm:
For each character c in s, replace c with t…