Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 1.08 KB

File metadata and controls

12 lines (11 loc) · 1.08 KB

algorithm

领扣算法题-Java代码实现-springboot

  • 编写一个高效的算法来搜索 m x n 矩阵 matrix 中的一个目标值 target。该矩阵具有以下特性:
    • 每行的元素从左到右升序排列。
    • 每列的元素从上到下升序排列。
  • 给定不同面额的硬币和一个总金额。写出函数来计算可以凑成总金额的硬币组合数。假设每一种面额的硬币有无限个。