統計
All
Feeds
質問
Save struct field names with hyphens/dash in JSON?
It is quite common to use hyphens/dashes (-) in the field names of JSON, like this: { "file-series-version" : "1.0", "fil...
6年弱 前 | 1 件の回答 | 1
1
回答解決済み
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
6年弱 前
解決済み
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
6年弱 前
解決済み
Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...
6年弱 前

