All Questions

19771 questions


1 answers
461 views
0
Would it be hard to develop an app using only the QR code?

Hello, I am a student studying development.Due to the development environment, it will be difficult to use Android studio or emulator. I have studied well using gitpod or codespaces when I study web.I...


1 answers
257 views
0
Spy++, inspect does not seem to be able to load child windows for a particular program.

I wanted to control the Windows program, so I looked at the program information using spy++ and infect. When the child window comes out, the command will be entered to control it, but nothing will com...

1 years ago

1 answers
409 views
0
I don't know HTML at all.

<!DOCTYPE html><html> <head> <meta charset=utf-8> <title>Game</title> <link rel=stylesheet type=text/css href=game.css> <script src=https://cdn....

1 years ago

1 answers
361 views
0
Why is the first Phonkemon question correct?

def solution(nums): answer = 0 l = int(len(nums) / 2) nums_set = len(set(nums)) if l < nums_set: answer = l elif l > nums_set: answer = nums_set else: answer = l return answerThis is Phonke...

1 years ago

1 answers
387 views
0
Writing to save printer and pdf using qt designer. Error occurs when outputting.I want to save the entire main window window as a printer and pdf.

from PyQt5.QtGui import *from PyQt5 import uicfrom PyQt5.QtWidgets import *from PyQt5.QtCore import *from PyQt5 import QtWidgets, uicfrom PyQt5.QtWidgets import QApplication, QWidget, QTableWidget, QT...

1 years ago

1 answers
357 views
0
I would like to ask you how the following xarray can be transformed into a 'time' series.

Dimensions have lat, lon, time, and data varials have atmospheric re-analysis data (ex. sw, lw, uflx, vflx, etc.) I want to merge many atmospheric re-analysis data into 'time' series by year.

1 years ago

1 answers
380 views
0
Understanding Time Series Horizontal Merge Questions

There are two CSV files: area1.csvarea2.csvThere is no item name in the time column, so If I want to combine horizontally based on time, how can I modify it?I would appreciate it if you could let me k...

1 years ago

1 answers
405 views
0
Understanding Time Series Horizontal Combination Questions

There are two CSV files: area1.csvarea2.csvThere is no item name in the time column, so If I want to combine horizontally based on time, how can I modify it?I would appreciate it if you could let me k...

1 years ago

1 answers
453 views
0
Data structure (for stacks and queues)

Data structure (stacks and queues)I would like to ask you something from the perspective of competition programming and practice.C++ and others think that stacks and queues are in the standard library...

1 years ago

1 answers
299 views
0
I want to get the number of elements from the pointer in the array.

If you receive a pointer pointing to the beginning of a char array as an argument as follows, I would like to know the number of elements of the char array using string_ptr.void hoge(char*string_ptr){...

c
1 years ago
« - 13 - »

© 2024 OneMinuteCode. All rights reserved.