1
vote
6answers
60 views

Ruby join a hash and a list +remaining values

I want to join a hash on its keys and a list Example: a={"aa"=>[1, 2], "bbb"=>[3, 4, 5], "c"=>[6, 7, 8], "hh"=>[9]} b=["aa","c"] (the elements of b list will ALWAYS present in a hash) ...
-1
votes
1answer
35 views

How do I continue to validate next element in an array for a block after a value fails in the block

I am trying to validate strings in a array with in if else. strings = ["Hello", "goodluck", "Bye" ] strings.each do |i| if i == "Hello" @browser.text.should == ("Welcome") elsif ...
1
vote
1answer
47 views

How to square each element of an array in Array class in Ruby?

Part of my code is as follows: class Array def square! self.map {|num| num ** 2} self end end When I call: [1,2,3].square! I expect to get [1,4,9], but instead I get [1,2,3]. Why is ...
0
votes
2answers
39 views

How to write single-line from multi-line blocks in ruby?

I'm trying to write the single-line block for each entity from array (@controller) and the purpose of this single block is yield the [n] element from the controller array, n is an accessor, now I ...
-2
votes
1answer
54 views

String to Array in Ruby

I need String "---\n- aaaadddhh ddddggg\n- bbbdddddf ff ddd\n- cccf\n" convert to Array in Ruby it should produces: ["aaaadddhh ddddggg", "bbbdddddf ff ddd", "cccf"]
2
votes
1answer
42 views

anything faster than .include? [duplicate]

I'm currently working with arrays and i decided to try and speed up one of my functions with replacing and iterative search of a sorted array with .include? much to my surprise the total run time of ...
2
votes
2answers
62 views

Ruby: What is destructive?

I know that ruby has many methods, especially on array or array like objects, for example sort or flatten. However, these methods also have a twin (the one with an exclamation mark) like sort! and ...
1
vote
7answers
62 views

Removing all elements of a column in a two-dimensional array

I have this array: arr = [["a","b","c"],[2,3,5],[3,6,8],[1,3,1]] which is representing a prawn-table containing columns "a", "b", and "c". How do I remove the entire column "c" with all its ...
-2
votes
3answers
66 views

How would I access a key from a hash that is within an array that is within a text file in ruby?

I'm trying to create an if/else statement that compares a user's input against all the name keys within a hash that's stored with a text file. How would I write this? user_accts is the array. Update ...
0
votes
0answers
55 views

Recursion, mixed arrays, Ruby

I have a recursive problem that is not returning as I expect and I'm not sure how to change the function. I would like an array containing both strings and arrays that derive from a chunk of text ...
-3
votes
3answers
42 views

Merge the data of two arrays of hashes based on values

I want to join two arrays. Both arrays contain hashes that have a single key in common: object_id. data1 = [ {"pid"=>"126199850741820_2172905", "object_id"=>606621809366286, ...
2
votes
2answers
33 views

Ruby Enumerable Collect Array still showing at end of list

I'm using Ruby enumerable to create an array of from another model. The method "companiesattending" class Conference < ActiveRecord::Base has_many :accountconferences has_many :accounts, ...
0
votes
1answer
23 views

pull name attribute out of nested User array ruby

board.voters_who_voted returns an array containing rows from the User table. The attribute I want to pull out is the name. Example output (only one user here): [#<User id: 71, name: "montgomery ...
3
votes
5answers
142 views

Sorting an array of strings in Ruby

I have learned two array sorting methods in Ruby: array = ["one", "two", "three"] array.sort.reverse! or: array = ["one", "two", "three"] array.sort { |x,y| y<=>x } And I am not able to ...
1
vote
4answers
87 views

Ruby sums of objects in array equal to zero [closed]

Write a method that finds if an array of numbers has a pair that sums to zero. Be careful of the case of zero; there needs to be two zeroes in the array to make a pair that sums to zero. Below is the ...
-2
votes
4answers
66 views

using array's delete_if command [closed]

Lets say, script = Array.new script.push("/home/dexter/constant.sh") script.push("/home/dexter/constant_validation.rb") script.push("/home/dexter/jobs/reporter.rb") Now when I use array's delete_if ...
-2
votes
2answers
48 views

Add new item to specific index and item on array [closed]

I have a problem to create a valid json to use it with jquery flot from my rails 3 controller. Actually I have a working json but I need generate some more complex data. In my websites model I have ...
1
vote
4answers
54 views

How do I repeat certain items in an array based on matched values in another array?

I've been trying for a couple weeks to figure this out, but I'm totally stumped. I have an array that represents item_id's: [2, 4, 5, 6, 2, 3]. I have another array that represents how many times ...
0
votes
2answers
50 views

Pull key value from an array of hashes?

I've got an array of hashes, like this: [ {"name"=>"Bob Jones", "id"=>"100005913544738"}, {"name"=>"Jimmy Smith", "id"=>"100005934513815"}, {"name"=>"Abe Lincoln", ...
0
votes
2answers
67 views

Ruby 'sort' puts 1XX values before the 8X values in an array

I have this simple array which I want to order from the lower to the higher number: "80", "84", "115", "98", "128", "131", "132", "128", "139", "140", "141", "142", "142", "124", "144", "145", "148", ...
0
votes
1answer
28 views

Manipulating hash data for rChart - Ruby

I have some code that takes in a CSV file. I'm trying to use this information to create charts with rChart in Ruby. In my code I have CSV file loaded into a hash like the following: ...
0
votes
2answers
33 views

Ruby Strings - Checking against a set of strings to match

I am trying to check an array of strings for containing one or more matching strings. Currently I am doing this by using if statements - not nice, but it works - However now I am looking for a more ...
-1
votes
1answer
43 views

Why doesn't assigning a variable to an array yield expected results in Ruby?

Using IRB, I tested the following: C:\Pickaxe>irb irb(main):001:0> list_of_strings = %w{ a list of strings in an array } => ["a", "list", "of", "strings", "in", "an", "array"] ...
2
votes
2answers
45 views

ruby: how to convert hash into array

I have a hash that contains numbers as such: {0=>0.07394653730860076, 1=>0.0739598476853163, 2=>0.07398647083461522} it needs to be converted into an array like: [[0, ...
0
votes
3answers
47 views

Ruby Change values of variables in array

I have an array made from variables, and I want to perform the same operation on each, and store the result in the original variable: (one, two, three) = [1, 2, 3] [one, two, three].map!{|e| e += 1} ...
0
votes
4answers
63 views

Ruby “gets” prompts user for input. How do I get input (string) to reference existing object?

I'm prompting the user with gets to give me either peg1, peg2, or peg3, which each reference an array already made before the prompt. However, the input from the user is a string, which would be ...
0
votes
1answer
42 views

Ruby produce modified string from array

I have an array ["http://www.google.com", "http://www.yahoo.com", "http://www.weather.com"] and I would like to produce one long string <a ...
3
votes
3answers
125 views

How do I filter elements in an array?

Sample Array: x = [1,2,3,4,2,2,2] Filter: y = [2,4,7,9] Desired output: result = [2,4,2,2,2] I tried: result = (x & y) but this gives me [4,2]. How do I get: result = [2,4,2,2,2]?
0
votes
4answers
70 views

Why does array[2, 2] = 'data' remove elements from array[]?

I've been studying arrays in Ruby. Specifically the effects of manipulating arrays with a[start, count] and a[lower_range..upper_range] in the Ruby Programming 1.9 book. Specifically, if I have: a = ...
0
votes
4answers
69 views

Ruby: how to smush 2D array based on value of one of the elements

In Ruby I have an array of arrays that looks like this: [["2011-12-03 01:21:31", "Closed", ""], ["2011-11-11 00:42:40", "", "Smith, Bob"], ["2011-11-11 00:42:40", "Escalated", ""], ["2011-11-10 ...
1
vote
3answers
73 views

When to use %w?

Following two statements will generate same result - arr = %w(abc def ghi jkl) and arr = ["abc", "def", "ghi", "jkl"] In which cases should %w be used? In the case above, I want an array ...
0
votes
2answers
41 views

removing duplicates in array of arrays in Ruby

I have an array of arrays, like this: aa = [ [a,d], [a,d1], [a,d], [b,d], [b,d2], [b,d3], [b,d2], [a,d2] ] I would like to have a unique array of arrays, not just on the first element - which I can ...
3
votes
4answers
69 views

Slice array when element reached

Lets say I have an array like so: ['x','cat', 'dog', 'x', 'dolphin', 'cougar', 'whale'] I don't know the length of the array or when an 'x' will occur. When I reach 'x' I want to push the following ...
0
votes
1answer
42 views

Why does this refactored ruby method return nil? [closed]

I wrote a method in class Float which takes a float (seconds) and converts it into a countdown timer. The code works fine when I write it like this: class Float def to_countdown (self % 60) == ...
1
vote
2answers
51 views

How to reorder activerecord array based on array of ids

I have an existing activerecord array, gotten by the following: @posts = Post.where(["created_at > ?", n_days.days.ago]) And I would like to order this array based on a value that needs to be ...
0
votes
2answers
78 views

How do I merge the items of two arrays in Ruby based on the order of a third array?

I have three arrays. My main list contains a mix of different entities which are verified in a DB: ab = ["a:555", "b:222", "a:333", "b:777", "a:777", "a:999", "b:111"] I have two more arrays of a ...
0
votes
2answers
31 views

ruby create 1 dimensional array to 2 dimensional array

I am working on the rails application I have the following array ["194K-001", "177K-STB", "17SH-LW9", "115L-T03"] and i want to create it as follow [["194K-001"], ["177K-STB"], ["17SH-LW9"], ...
1
vote
5answers
117 views

Ruby: array of hashes from textfile

Lets say I have text file like this: 1 2 3 4 5 6 7 8 9 ... I want to read it into data structure like this: h[1] = { "a" => 1, "b" => 2, "c" => 3 } h[2] = { "a" => 4, "b" => 5, "c" ...
0
votes
2answers
74 views

Ruby performance: rewrite class extension to compare array elements in C?

I have this code that extends the Ruby Array class: # Extendes the Array class to have methods giving the same RSpec functionality of # checking if Array elements equals to another ones'. class Array ...
-1
votes
2answers
58 views

String array in database. match and return values

I have the following data in a column letters in a mysql database. I saved them in varchar: letters ["a","b"] ["a","b","d"] ["a","d"] ["d","c","e"] ["e","c","f"] ["c","f"] ["f","e"] I am trying to ...
4
votes
3answers
105 views

What is the difference between << and +=?

I have been playing around with arrays a bit, and found myself in trouble understanding the following code: first_array = [] second_array = [] third_array = [] # I initialized ...
-1
votes
1answer
34 views

Can't compare Fixnum with nil in Ruby

I'm trying to do a bubble sort. I'm passing bubble_sort([5, 4, 3, 2, 1]), and I get an error message saying: ArgumentError: comparison of Fixnum with nil failed. I don't think arr[i] or arr[i + 1] is ...
1
vote
1answer
29 views

Breaking ruby array into multiple arrays depending on common attributes

Suppose I have an array of objects as: [ obj1, obj2, obj3 ...... objn ] where each object has an attribute, say A. How can I break this array into multiple arrays with each array containing ...
0
votes
3answers
64 views

Iterate nested hash that contains hash and/or Array

I have a hash, I am trying to extract the keys and values for it. The hash has a nested hash and/or array of hashes. After checking this site and few samples I got the key and values. But having ...
0
votes
3answers
55 views

Ruby Parsing Hash

So I'm using a gem file to pull links from the front page of reddit. The gem function returns a hash containing ALL the links on the front page and all their info (# of comments, karma, author, date, ...
0
votes
2answers
37 views

Escaping a variable (containing an array)

I want to have a hash my_statement as below: my_statement = %|{:foo=>\#{bar_array}}| where :foo is the key and the value is to be substituted with the value of bar_array later. After I later ...
1
vote
2answers
45 views

List comprehension for flatteing values from dicts from list

I want to get a one-dimensional list of values from several keys for list of dicts. That's how I do it in Ruby: irb> list_ = [{a:1, b:2, c:3}, {a:4, b:5, c:6}] irb> list_.flat_map{ |dict_| ...
1
vote
1answer
34 views

find pairs with distance in ruby array

I have a big array with a sequence of values. To check if the values in place x have an influence on the values on place x+distance I want to find all the pairs pair = [values[x], values[x+1]] The ...
0
votes
1answer
38 views

why doesn't will_paginate display the items after the first page? (it's null past page 1)

I am paginating an array @items Here's the relevant controller part class StaticPagesController < ApplicationController def home if signed_in? @post = current_user.microposts.build ...
-2
votes
3answers
70 views

Call a Hash value with a variable - Ruby

How can I call a hash value with a variable? I have a hash like this:data = {"5/3/2013 13:31:13"=>{:open=>65, :closed=>835}} datasequences.each do |seq_title| sequence = Hash.new(0) ...

1 2 3 4 5 35