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

@ -99,7 +99,7 @@ void main() {
/* 判断队列是否为空 */
final bool isEmpty = queue.isEmpty();
print("队列是否为空 isEmpty = $isEmpty");
print("队列是否为空 = $isEmpty");
/* 测试环形数组 */
for (int i = 0; i < 10; i++) {