摘要:
public int[][] func(int[][] nums,int r,int c){ int m=nums.length; int k=0; int n=nums[0].length; if(r*c!=m*n){ return nums; } int[][] res = new int[r][c]; for(int i=0;i<r;i++)... 阅读全文
摘要:
记录下当时自己的操作,希望对你解决问题有帮助: 首先打开Mac 自带的 terminal: Go to mysql/bin directory(到该目录下) Start a mysql deamon with this option: Open another terminal and open a 阅读全文