-
Notifications
You must be signed in to change notification settings - Fork 0
/
389.找不同.js
73 lines (67 loc) · 1.29 KB
/
389.找不同.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
* @lc app=leetcode.cn id=389 lang=javascript
*
* [389] 找不同
*
* https://leetcode.cn/problems/find-the-difference/description/
*
* algorithms
* Easy (68.42%)
* Likes: 326
* Dislikes: 0
* Total Accepted: 127K
* Total Submissions: 185.7K
* Testcase Example: '"abcd"\n"abcde"'
*
* 给定两个字符串 s 和 t ,它们只包含小写字母。
*
* 字符串 t 由字符串 s 随机重排,然后在随机位置添加一个字母。
*
* 请找出在 t 中被添加的字母。
*
*
*
* 示例 1:
*
*
* 输入:s = "abcd", t = "abcde"
* 输出:"e"
* 解释:'e' 是那个被添加的字母。
*
*
* 示例 2:
*
*
* 输入:s = "", t = "y"
* 输出:"y"
*
*
*
*
* 提示:
*
*
* 0 <= s.length <= 1000
* t.length == s.length + 1
* s 和 t 只包含小写字母
*
*
*/
// @lc code=start
/**
* @param {string} s
* @param {string} t
* @return {character}
*/
var findTheDifference = function (s, t) {
let s_sum = 0, t_sum = 0;
for (let i = 0; i < s.length; i++) {
s_sum += s[i].charCodeAt()
}
for (let j = 0; j < t.length; j++) {
t_sum += t[j].charCodeAt()
}
// fromCharCode 静态方法返回使用指定的代码点序列创建的字符串
return String.fromCharCode(t_sum - s_sum)
};
// @lc code=end