Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit42a6b11

Browse files
fix build
1 parentddcbf01 commit42a6b11

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

‎src/main/java/com/fishercoder/solutions/_1768.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ public class _1768 {
44
publicstaticclassSolution1 {
55
publicStringmergeAlternately(Stringword1,Stringword2) {
66
StringBuildersb =newStringBuilder();
7-
inti =0,j =0;
7+
inti =0;
8+
intj =0;
89
for (;i <word1.length() &&j <word2.length(); ) {
910
sb.append(word1.charAt(i++));
1011
sb.append(word2.charAt(j++));

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp