Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3596092
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T19:56:21+00:00 2026-05-18T19:56:21+00:00

Why does this code delete only even elements within the array? I would expect

  • 0

Why does this code delete only even elements within the array? I would expect the for loop to iterate through each value, 0 through 3, and delete each element one at a time. But it is only deleting a[0] and a[2]. What am I doing wrong? Thanks in advance–

a=%w(ant bat cat dog)
puts a.inspect #output: ["ant", "bat", "cat", "dog"]

for k in (0..3)
    a.delete_at(k)
end

puts a.inspect #output: ["bat", "dog"]

UPDATE–

Thank you for your responses; I see what I was doing now. In order to delete each element of the array, the Array method ‘shift’ would be appropriate. For example:

for each in (0..3)
    a.shift
    print a
end

This would shift the first element out of the array, and move each subsequent element forward one cell. Thank you for the recommendation to use ‘each’–I can see that it is the preferred syntax.

UPDATE 2–

Would the following section of code be more representative of proper ruby syntax?

(0..3).to_a.each do
    a.shift
    p a
end

And Thanks to Glenn for the suggestions on deleting contents of an array.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T19:56:22+00:00Added an answer on May 18, 2026 at 7:56 pm

    Because when you delete element 0 element 1 would be element 2 of the original array.

    Initially:
    [ant, bat, cat, dog]
    
    a.delete_at[0] => ant
    [bat, cat, dog]
    
    go to next element -> 1
    
    a.delete_at[1] => cat
    [bat, dog]
    
    go to next element -> 2
    a.delete_at[2] => nil (out of range)
    
    go to next element -> 3
    a.delete_at[3] => nil
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Why does this code fail to display the category name Apples using the current
Why does this code: class A { public: explicit A(int x) {} }; class
Can anyone tell me what exactly does this Java code do? SecureRandom random =
This code does not seem to compile, I just need to write something to
Can somebody advise me what this code does and how can I convert it
I am completely stumped as to why this code does not get any SDL
The code currently does this and the fgetpos does handle files larger than 4GB
I have some code that effectively does this : File file = new File(C:\\Program
What does STRAIGHT_JOIN do in this code ? SELECT STRAIGHT_JOIN ClosingBalance FROM Accounts WHERE
I see a lot of example code for C# classes that does this: public

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.