Every day a Leetcode
题目来源:3014. 输入单词需要的最少按键次数 I
解法1:统计
统计字符串 word 的小写字母个数和 1、#、*、0 的个数。
将小写字母均匀地分配到 8 个按键上,模拟即可。
代码:
/** lc appleetcode.cn id3…
SpringBoot切换使用goolge的Gson作为SpringMvc的Json转换工具
<!-- gson依赖 -->
<dependency><groupId>com.google.code.gson</groupId><artifactId>gson</artifactId>
</dependency>Configuration
public class JsonWebConfig {B…