duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
| function termFreqMap(str) { | |
| var words = str.split(' '); | |
| var termFreq = {}; | |
| words.forEach(function(w) { | |
| termFreq[w] = (termFreq[w] || 0) + 1; | |
| }); | |
| return termFreq; | |
| } | |
| function addKeysToDict(map, dict) { |
| // Copyright 2019 Google LLC. | |
| // SPDX-License-Identifier: Apache-2.0 | |
| // Basic p(r)olyfill for proposed feature | |
| // This defines no successor of empty arrays, so the range for prefix | |
| // [] or [[],[]] has no upper bound. | |
| // An alternate definition would preclude adding additional nesting, | |
| // so the range for prefix [] would have upper bound [[]] and the | |
| // range for prefix [[], []] would have upper bound [[], [[]]]. |
| /** | |
| * jQuery extension, add support `scrollstart` and `scrollend` events. | |
| * | |
| * @author RubaXa <trash@rubaxa.org> | |
| * @github https://gist.github.com/RubaXa/5568964 | |
| * @license MIT | |
| * | |
| * | |
| * @settings | |
| * $.special.scrollend.delay = 300; // default ms |
| <?php // Don't use this line. | |
| /* | |
| * Add the script below to wherever you store custom code snippets | |
| * in your site, whether that's your child theme's functions.php, | |
| * a custom plugin file, or through a code snippet plugin. | |
| */ | |
| /** | |
| * This function will connect wp_mail to your authenticated |