got a range from an array, but looking for other ways of doing it

S

Simon Schuster

a is an array. I'm trying to chop the first and last third off. or,
choose only the middle third. can be a rough third.

a.length # 4808
range = a.length * 0.3 # 1442.4
range = range.to_i # 1442
rangetop = a.length / 2 + range # 3846
rangebottom = a.length / 2 - range # 962

a[rangebottom..rangetop].length # 2885
 
F

Farrel Lifson

a is an array. I'm trying to chop the first and last third off. or,
choose only the middle third. can be a rough third.

a.length # 4808
range = a.length * 0.3 # 1442.4
range = range.to_i # 1442
rangetop = a.length / 2 + range # 3846
rangebottom = a.length / 2 - range # 962

a[rangebottom..rangetop].length # 2885

irb(main):002:0> a = Array(1..100)
=> [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36,
37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53,
54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87,
88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100]
irb(main):003:0> a[a.length/3,a.length/3]
=> [34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66]
 
H

Harry Kakueki

a is an array. I'm trying to chop the first and last third off. or,
choose only the middle third. can be a rough third.

a.length # 4808
range = a.length * 0.3 # 1442.4
range = range.to_i # 1442
rangetop = a.length / 2 + range # 3846
rangebottom = a.length / 2 - range # 962

a[rangebottom..rangetop].length # 2885

That's a very rough third :)

arr = (1..100).to_a
bot = arr.length/3
p arr[bot..bot*2]

[34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67]

Harry
 
S

SpringFlowers AutumnMoon

Simon said:
a is an array. I'm trying to chop the first and last third off. or,
choose only the middle third. can be a rough third.

a.length # 4808
range = a.length * 0.3 # 1442.4
range = range.to_i # 1442
rangetop = a.length / 2 + range # 3846
rangebottom = a.length / 2 - range # 962

a[rangebottom..rangetop].length # 2885


if the size is very big you can also do it inline:

a = Array(1..100)
==>[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 2
1, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
39, 40, 4
1, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58,
59, 60, 6
1, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,
79, 80, 8
1, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98,
99, 100]

len = a.length
==>100

a[0..len / 3] = nil
==>nil

a
==>[35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
51, 52,
53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
71, 72,
73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
91, 92,
93, 94, 95, 96, 97, 98, 99, 100]

a[len / 3..-1] = nil
==>nil

a
==>[35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
51, 52,
53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67]
 
S

SpringFlowers AutumnMoon

that's strange, if i do

a = Array(1..100)
==>[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1
6, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 3
1, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 4
6, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 6
1, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 7
6, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 9
1, 92, 93, 94, 95, 96, 97, 98, 99, 100]

a[0..a.size/2] = a[a.size*2/3..-1] = nil
==>nil
a
==>[52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
65, 66]


a = Array(1..100)
==>[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1
6, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 3
1, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 4
6, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 6
1, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 7
6, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 9
1, 92, 93, 94, 95, 96, 97, 98, 99, 100]

a[0..a.size/3] = a[a.size*2/3..-1] = nil
==>nil
a
==>[35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62,
63, 64, 65, 66]


shouldn't it be a[0..a.size/2] = a[a.size*2/3..-1] = nil
really?

because it is equiv to

a[0..a.size/2] = (a[a.size*2/3..-1] = nil)
a[0..a.size/2] = (nil)

by the time the Right most got evaluated, the array is roughly 66
elements, so it should be half the size to be deleted. looks like the
interpreter precalculate a.size / 2 before the final assignment.
 
R

Robert Klemme

2007/9/30 said:
a is an array. I'm trying to chop the first and last third off. or,
choose only the middle third. can be a rough third.

a.length # 4808
range = a.length * 0.3 # 1442.4
range = range.to_i # 1442
rangetop = a.length / 2 + range # 3846
rangebottom = a.length / 2 - range # 962

a[rangebottom..rangetop].length # 2885

What exactly do you want to do with the slice?

Kind regards

robert
 
R

Rick DeNatale

that's strange, if i do

a = Array(1..100)
==>[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1
6, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 3
1, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 4
6, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 6
1, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 7
6, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 9
1, 92, 93, 94, 95, 96, 97, 98, 99, 100]

a[0..a.size/2] = a[a.size*2/3..-1] = nil
==>nil
a
==>[52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
65, 66]


a = Array(1..100)
==>[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1
6, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 3
1, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 4
6, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 6
1, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 7
6, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 9
1, 92, 93, 94, 95, 96, 97, 98, 99, 100]

a[0..a.size/3] = a[a.size*2/3..-1] = nil
==>nil
a
==>[35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62,
63, 64, 65, 66]


shouldn't it be a[0..a.size/2] = a[a.size*2/3..-1] = nil
really?

because it is equiv to

a[0..a.size/2] = (a[a.size*2/3..-1] = nil)
a[0..a.size/2] = (nil)

No it's not because the leftmost = in the first statement is'nt doing
what you think it is:

a = Array(1..100) # => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65,
66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82,
83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99,
100]

b = a[a.size*2/3..-1] = nil # => nil

a # => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52,
53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66]

qri Array#[]=
-------------------------------------------------------------- Array#[]=
array[index] = obj -> obj
array[start, length] = obj or an_array or nil -> obj or an_array
or nil
array[range] = obj or an_array or nil -> obj or an_array
or nil

Note that Array#[]= returns its second argument, NOT the resulting array.

ALSO

The value of a ruby assignment expression is the right hand side, NOT
the left hand side.

class Foo
def a=(b)
10
end
end

f = Foo.new

f.send:)a=, 3) # => 10
b = f.a = 3 # => 3
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,766
Messages
2,569,569
Members
45,043
Latest member
CannalabsCBDReview

Latest Threads

Top