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 mapValues(obj, fn) { | |
| return Object.keys(obj).reduce((result, key) => { | |
| result[key] = fn(obj[key], key); | |
| return result; | |
| }, {}); | |
| } | |
| function pick(obj, fn) { | |
| return Object.keys(obj).reduce((result, key) => { | |
| if (fn(obj[key])) { |
| import Foundation | |
| public func getASTString() -> String { | |
| // get the file path for the file "test.json" in the playground bundle | |
| // let filePath = NSBundle.mainBundle().pathForResource("FirstTtest", ofType: "ast") | |
| // get the contentData | |
| let contentData = NSFileManager.defaultManager().contentsAtPath("a.txt") | |
| import React, { Component } from 'react' | |
| import Subapp from './subapp/Root' | |
| class BigApp extends Component { | |
| render() { | |
| return ( | |
| <div> | |
| <Subapp /> | |
| <Subapp /> | |
| <Subapp /> |
| --- | |
| apiVersion: v1 | |
| kind: Service | |
| metadata: | |
| name: mysql | |
| spec: | |
| ports: | |
| - port: 3306 | |
| nodePort: 30306 | |
| selector: |