Tagged Questions
The identical tag has no wiki summary.
3
votes
4answers
58 views
removing columns with same value from a data frame
I've got a data frame like this one
1 1 1 K 1 K K
2 1 2 K 1 K K
3 8 3 K 1 K K
4 8 2 K 1 K K
1 1 1 K 1 K K
2 ...
2
votes
1answer
193 views
Two functions doing the exact same thing, alias?
In a derived class I have a function called evaluate() (it's a virtual in the base class). In this derived class i also have a function set_value() and hence i want get_value() as well. get_value() ...
2
votes
3answers
257 views
Removing Identical Objects in Ruby?
I am writing a Ruby app at the moment which is going to search twitter for various things. One of the problems I am going to face is shared results between searches in close proximity to each other ...
2
votes
2answers
314 views
Ruby “is” equivalent
Is there a Ruby equivalent for Python's "is"? It tests whether two objects are identical (i.e. have the same memory location).
1
vote
1answer
19 views
Validating with Identical using value from another subform
I've separated a long one page form into subforms anticipating it will be split into a multipage form later in the project lifecycle. I'm having trouble with the token var in the Identical validator ...
1
vote
7answers
120 views
Way to judge if two Arrays are identical?
By identical I mean two Arrays contain same elements, order of elements in Arrays are not matter here.
The solution I came up with is like this(which turns out a wrong approach as pointed out in ...
0
votes
0answers
12 views
Merging nearly identical lines in Excel
I'm looking for someone that could help me with this Excel issue I'm having.
I've got this giant table (like 370 line x 7 columns).
This table has a particularity, it's like this :
ItemA - ...
0
votes
0answers
46 views
Identical Alt-key shortcuts in WPF/XAML Labels
My wpf application requires the user to fill in a form that has many text fields. Each text field has a label in front of it that provides a name for the field and a shortcut key that sets the ...
0
votes
3answers
91 views
C++ Checking for identical values in 2 arrays
I have 2 arrays called xVal, and yVal.
I'm using these arrays as coords. What I want to do is to make sure that the array doesn't contain 2 identical sets of coords.
Lets say my arrays looks like ...
0
votes
1answer
19 views
Py3k identical code executing differently in dynamic shell and from file
The code I'm using is:
import time
print(time.strftime("%H:%M:%S"))
In the dynamic shell, this (as you would expect) outputs a formatted string, e.g. 03:21:35
When executing the exact same code ...
0
votes
1answer
84 views
Find exceptions in jagged array of strings (C#)
I have some data that I read into a jagged array of strings. An example of such arrays:
string[] row = { "John", "Apple", "Orange", "Banana" };
and I will have an array to hold these rows of ...
0
votes
1answer
370 views
How to check if two rows are identical and contain the same data in a list of rows
I have a list of lines in the D column and every line has a few properties in columns I, J, K and so on. I want to check my list if any rows contain the same properties and same line number. I want to ...
0
votes
2answers
126 views
Confirm same password with Zend_Filter_Input
ZF 1.11.3 here.
$validators = array(
'pass1' => array('presence' => 'required'),
'pass2' => array(array('Identical', true, 'token' => 'pass1'))
),
$input = new ...
0
votes
1answer
287 views
XML schema: the same name of the parent element attribute and child element
I've a quick question about XML format, can I have an xml file that is formatted like this:
<categories>
<category id="10" **name**="someName"> -parent node [contains 'name' ...
0
votes
4answers
125 views
Identical classes casting?
Suppose I have two classes A and B. Both are identical (same atributes, methods, etc), but they are named different.
There's some safe way, in Java, to cast a B object as an A object?
0
votes
1answer
100 views
sql query to return items based on text and group ID
I am not sure how to best describe what I am trying to do (or search for it for that matter) but I am going to try.
I have a pre-existing query (stored procedure) that returns items based on 3 ...
0
votes
2answers
335 views
Howto see if form fields are identical in Zend framework
In Zend Framework (1.10) i want to check if two input fields are identical
I have the following code in my form:
$this->addElement('password', 'password', array(
'label' => ...