hello-algo/codes/dart/utils/PrintUtil.dart

22 lines
349 B
Dart
Raw Normal View History

/**
* File: PrintUtil
* Created Time: 2023-01-23
* Author: Jefferson (JeffersonHuang77@gmail.com)
*/
import 'ListNode.dart';
class PrintUtil {
void printLinkedList(ListNode? head) {
List<String> list = [];
while (head != null) {
list.add('${head.val}');
head = head.next;
}
print(list.join(' -> '));
}
}