@yanbo01haomiao
2021-08-23T20:22:23.000000Z
字数 251
阅读 309
面试
刷题
// 示例数组
int nums[4][4] = {
{1, 2, 4, 7},
{2, 3, 5, 10},
{8, 10, 100, 1000},
{-11, 0, 10, 29},
};
// 输出
int res[16] = {-11, 0, 1, 2, 2, 3, 4, 5, 7, 8, 10, 10, 10, 29, 100, 1000};