Go function method?


```
func isNumber(n int) bool {
    var i, j, k int
    i = n % 10
    j = (n / 10) % 10
    k = (n / 100) % 10

    sum := i*i*i + j*j*j + k*k*k
    return sum == n
}
```
Dec.30,2021

A three-digit integer. Whether the sum of the third power of each digit is equal to this three-digit number

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3db49-2b0f9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3db49-2b0f9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?