19771 questions
We are currently creating a program that retrieves settings and settings separately from text files in the format below.<Format>test login_id:useridauthority:root folder:root123login password:12...
Are reference static variables in c# stored in static, heap, or stack areas?
How do I use RDB and key-value DB differently?Personally, I understand the difference between whether or not you can create an index later, but is this correct?
I have a question about Python.In order to execute bubble sort, I have programmed as follows, but I would like to print every time after operation.What should we do to do so?For example, if [3,5,1,7] ...
https://atcoder.jp/contests/abc058/tasks/abc058_bIn the code section below, environment dependent characters? will be displayed.Why do environment-dependent characters appear?I would appreciate it if ...
I'd like to use the acceleration sensors called the Spresense and BMI160 to create a code that records the sensor output on the microSD card, but it's not working.I would like to have the sensor outpu...
When I put the master's data into the WebAPI response body, is it better to return the ID or the value associated with the ID?For example, in the case of a WebAPI response body like GET/tasks/1 that r...
In the G spreadsheet, I would like to check if the A3 cell string contains the symbol B3:B32.The string in A3 is Expected an int but was BOOLEAN at path$.data.next_pageAssume that First, put the symbo...
function flatten(oldArr) { var newArr = [] for (var i = 0; i < oldArr.length; i++) { if (Array.isArray(oldArr[i])) { newArr = newArr.concat(flatten(oldArr[i])) } } else { newArr.push(oldArr[i]) } }...
using namespace std;class My_string {private:char* str;public:My_string(char *a) { str = a; };~My_string() { };int my_strlen() {int b = 0;while (1) {if (str[b] == NULL){break; } b++; } return b;};vo...
« | - 24 - | » |
© 2024 OneMinuteCode. All rights reserved.