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

Commit6dd5b20

Browse files
github-actionsgithub-actions
github-actions
authored and
github-actions
committed
Formatted with Google Java Formatter
1 parent0550711 commit6dd5b20

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

‎DataStructures/Lists/CountSinglyLinkedListRecursion.java‎

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ public static void main(String[] args) {
1818
privateintcountRecursion(Nodehead) {
1919
returnhead ==null ?0 :1 +countRecursion(head.next);
2020
}
21-
/**
22-
*Returns the count of the list.
23-
*/
21+
/** Returns the count of the list. */
2422
@Override
2523
publicintcount() {
2624
returncountRecursion(getHead());

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp