Update Dart code to output same as Java (#522)

This commit is contained in:
liuyuxin
2023-05-30 13:00:16 +08:00
committed by GitHub
parent 5bbcb12979
commit 8247a611d7
14 changed files with 47 additions and 42 deletions

View File

@@ -138,7 +138,7 @@ void main() {
/* 获取双向队列的长度 */
final int size = deque.size();
print("双向队列长度 size = $size");
print("双向队列长度 size = $size");
/* 判断双向队列是否为空 */
final bool isEmpty = deque.isEmpty();