This commit is contained in:
Wen 2023-04-03 00:51:30 +08:00
parent f894f2a458
commit 63b21c6b17
2 changed files with 15 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public class TwoSumFast {
" ]\n" +
" },\n" +
" \"_class\": \"com.middle.dao.domain.RecallLaunch\"";
String[] strings = In.readStrings("test.txt");
String[] strings = new In("test.txt").;
StringBuffer ret = new StringBuffer();
for (String string : strings) {

View File

@ -0,0 +1,14 @@
/*
* @lc app=leetcode.cn id=67 lang=javascript
*
* [67] 二进制求和
*/
// @lc code=start
/**
* @param {string} a
* @param {string} b
* @return {string}
*/
var addBinary = function (a, b) {};
// @lc cod e=end