key tag

13 questions


1 answers
343 views
0
AutoHotKey Regular Expression Fails

In order to assign the Delete string after any number of digits when pressing the no conversion key in AutoHotKey, I ran the following script and got an error message.Current State Script:<vk1D:: S...


1 answers
99 views
0
How do I update the value with the key value in Java hashMap?

Assuming there is a HashMap, how do I find the value of Integer as the string key value and update the value? The way to remove the existing value and enter a new one is concerned about overhead. The ...

2 years ago

1 answers
88 views
0
c Language stack string backwards output question

#include < stdio.h>#include < stdlib.h>#include < string.h>typedef char element; typedef struct stackNode { element data; struct stackNode *link; }stackNode;stackNode* top; void pus...

2 years ago

1 answers
77 views
0
For HardKey, when pressed in duplicate, should I use a timer to give time?

HardKeyKeyCode: Assume that you have VoulmeUp, and if you press this VoulmeUp, a popup will float.When you press the same Voulme Up Hard Key within seconds of pressing Voulme Up,To prevent events from...

2 years ago

1 answers
150 views
0
Can I put two Python lists in the dictionary's key and value values?

Can I put two lists in one dictionary as keys and values?a=[Apple, Banana, Pineapple]b=[1,2,3]When dic={'Apple':1, 'Banana':2, 'Pineapple':3}Can you put it in order like this?


1 answers
134 views
0
About the Android Spinner Hard Key Interworking

Is there a way to move Spinner's item with the hard key?For example, if I press KEY_3, the selection item goes down one by one within the spinner, and if I press ENTER, the item is selected. Is there ...

2 years ago

1 answers
87 views
0
Python, I got a value from the database, so I have a question when I use it.

I put the value I received in the database into the list as append, and when I write the value of each kernel, I filter the list[] twice in the array as shown in 1, remove the tuple(), and use it afte...

2 years ago

1 answers
133 views
0
I'm not sure how to put the value in Java HashMap with a repeat statement.

I learned about Java this time.I was studying hashmap, but I wondered if I could put the key value as a repeating sentence.public static void main(String[] args){ HashMap<string, Integer> map1 =...

2 years ago

2 answers
69 views
0
I have a question to get Python dictionary key, value value.

input_value={AAA': {'aa1': ['a1', 'b1', 'c1'], 'aaa2': ['a2', 'b2', 'c2']}, 'BBB': {'bb1', 'b1']}}target1 = input_value.keys()# # dict_keys(['AAA', 'BBB'])target2 = input_value.values()# # dict_values...

2 years ago

1 answers
67 views
0
Android home key disable? block question.

If one activity is carried out, I want to prevent homekey event.First, we found ways to detect home key events using the onUserLeaveHint method and how to detect them by broadcast.First, the onUserLea...

2 years ago
- 1 - »

© 2024 OneMinuteCode. All rights reserved.