年度归档: 2024 年

8 篇文章

leetcode day1
排序 Sort def bubble_sort_xor(arr): n = len(arr) for i in range(n): for j in range(0, n-i-1): if arr&#…