Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
Dorothydu
/
gitrepo_20
like
0
Dataset card
Files
Files and versions
xet
Community
main
gitrepo_20
/
10-week-algorithm-excercise-master
/
OneQuestionPerDay
/
258
/
add_digits2.go
Dorothydu
Add files using upload-large-folder tool
a5a906c
verified
7 months ago
raw
Copy download link
history
blame
contribute
delete
114 Bytes
package
main
func
addDigits2
(num
int
)
int
{
if
num ==
0
{
return
0
}
else
{
return
(num -
1
) %
9
+
1
}
}