Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/baidu/tera
/ MinOfThreeNum
Function
MinOfThreeNum
src/utils/string_util.cc:199–203 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
197
};
198
199
static int MinOfThreeNum(int a, int b, int c) {
200
int min = (a < b) ? a : b;
201
min = (min < c) ? min : c;
202
return min;
203
}
204
205
/*
206
a[0] a[1] a[2] a[3] . . . a[n-1]
Callers
1
EditDistance
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected