题目: 题解:
class Solution {public int findContentChildren(int[] g, int[] s) {Arrays.sort(g);Arrays.sort(s);int m g.length, n s.length;int count 0;for (int i 0, j 0; i < m && j < n; i, j) {while (j < n &&…
Alan Turing: 《On Computable Numbers, with an Application to the Entscheidungsproblem》 resource: https://people.math.ethz.ch/~halorenz/4students/Literatur/TuringFullText.pdf 文章背景:这篇论文是图灵为了回答大卫希尔伯特(David Hilbert&…