/*编程求两个矩阵相乘的结果.输入第一行是整数m,n,表示第一个矩阵式m行n列的:然后是一个m * n的矩阵.再下一行的输入时整数p,q,表示下一个矩阵p行,q列的(n=p);然后就是一个p行q列的矩阵.要求输出两个矩阵相乘的结果矩阵(1<m.n.p.q<=8).P82页2014年10月3日21:32:23*/#include <iostream>using namespace std;const int size = 10;void init(int *, int *, int
题目链接:https://leetcode.com/problems/remove-duplicates-from-sorted-array-ii/#/description 给定一个已经排好序的数组,数组中元素存在重复,如果允许一个元素最多可出现两次,求出剔除重复元素(出现次数是两次以上的)后的数组的长度. For example, Given sorted array nums = [1,1,1,2,2,3], Your function should return length = 5,