Skip to content

Commit d9c96a5

Browse files
committed
remove comments
1 parent e3b9769 commit d9c96a5

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

21MergeTwoLists/MergeTwoLists.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ private static ListNode getListNode(int[] data) {
2929
}
3030
}
3131

32-
/**
33-
* 还是别人的好
34-
*/
3532
class OthersSolution {
3633
ListNode mergeTwoLists(ListNode l1, ListNode l2) {
3734
if (l1 == null) {
@@ -48,9 +45,6 @@ ListNode mergeTwoLists(ListNode l1, ListNode l2) {
4845
}
4946
}
5047

51-
/**
52-
* 屎特, 我的方法太吃屎了
53-
*/
5448
class MySolution {
5549
ListNode mergeTwoLists(ListNode l1, ListNode l2) {
5650
if (l1 == null) {

0 commit comments

Comments
 (0)