461:汉明距离

This commit is contained in:
huangge1199 2021-05-28 08:13:38 +08:00
parent ffd6e46f44
commit 44447da0aa

View File

@ -23,12 +23,14 @@
// 👍 426 👎 0
package leetcode.editor.cn;
//461:汉明距离
public class HammingDistance {
public static void main(String[] args) {
//测试代码
Solution solution = new HammingDistance().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {