This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (define (count-change amount) | |
| (cc amount 5 0) | |
| ) | |
| (define (cc amount kinds-of-coins depth) | |
| (define from-node (cc-node-depth amount kinds-of-coins depth)) | |
| (display (cc-node-depth-label amount kinds-of-coins depth)) | |
| (cond | |
| ((= amount 0) 1) | |
| ((or (< amount 0) (= kinds-of-coins 0)) 0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict'; | |
| /* Sample | |
| forward :8087/jenkins to :8080/jenkins. | |
| In product,the entityPort can be 80,so u can access jenkins | |
| by http://yourhostname/jenkins | |
| Good Luck! All Done Just By NodeJS! | |
| */ |
NewerOlder