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
| func getProduct(digits string) (product int64, e error) { | |
| product = 1 | |
| for _, digit := range digits { | |
| d, err := strconv.Atoi(string(digit)) | |
| if err != nil { | |
| return -1, fmt.Errorf("cannot convert %v to int", digit) | |
| } | |
| product *= int64(d) | |
| } |
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
| is:issue is:open label:beginner | |
| is:issue is:open label:easy | |
| is:issue is:open label:first-timers-only | |
| is:issue is:open label:good-first-bug | |
| is:issue is:open label:"good first issue" | |
| is:issue is:open label:starter | |
| is:issue is:open label:up-for-grabs |
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
| Title | Author | Genre | Height | Publisher | |
|---|---|---|---|---|---|
| Fundamentals of Wavelets | Goswami, Jaideva | signal_processing | 228 | Wiley | |
| Data Smart | Foreman, John | data_science | 235 | Wiley | |
| God Created the Integers | Hawking, Stephen | mathematics | 197 | Penguin | |
| Superfreakonomics | Dubner, Stephen | economics | 179 | HarperCollins | |
| Orientalism | Said, Edward | history | 197 | Penguin | |
| Nature of Statistical Learning Theory, The | Vapnik, Vladimir | data_science | 230 | Springer | |
| Integration of the Indian States | Menon, V P | history | 217 | Orient Blackswan | |
| Drunkard's Walk, The | Mlodinow, Leonard | science | 197 | Penguin | |
| Image Processing & Mathematical Morphology | Shih, Frank | signal_processing | 241 | CRC |