zhedahht / CodingInterviewChinese2

《剑指Offer:名企面试官精讲典型编程面试题》第二版源代码
Other
5.32k stars 2.17k forks source link

Fix bug in SortArrayForMinNumber.cpp #33

Open LF0614 opened 5 years ago

LF0614 commented 5 years ago

allocate space dynamically for Two-dimensional array with '(char*)new int[length]' is wrong, should be 'new char[length]'