Skip to content
Programming101
Programmingoneonone
  • Home
  • CS Subjects
    • Internet of Things (IoT)
    • Digital Communication
    • Human Values
  • Programming Tutorials
    • C Programming
    • Data structures and Algorithms
    • 100+ Java Programs
    • 100+ C Programs
  • HackerRank Solutions
    • HackerRank Algorithms Solutions
    • HackerRank C problems solutions
    • HackerRank C++ problems solutions
    • HackerRank Java problems solutions
    • HackerRank Python problems solutions
Programming101
Programmingoneonone

HackerRank Ruby Array – Deletion problem solution

YASH PAL, 31 July 2024

In this HackerRank Ruby Array – Deletion problem solution The array class has various methods of removing elements from the array.

Let’s look at the array

 arr = [5, 6, 5, 4, 3, 1, 2, 5, 4, 3, 3, 3] 

Delete an element from the end of the array

 > arr.pop

 => 3

Delete an element from the beginning of the array

 > arr.shift

 => 5

Delete an element at a given position

 > arr.delete_at(2)

 => 4

Delete all occurrences of a given element

 > arr.delete(5)

 => 5

 > arr

 => [6, 3, 1, 2, 4, 3, 3]

Your task is to complete the functions using syntax as explained above.

HackerRank Ruby Array - Deletion problem solution

Problem solution.

def end_arr_delete(arr)
    return arr.pop# delete the element from the end of the array and return the deleted element
    
end

def start_arr_delete(arr)
    return arr.shift
    # delete the element at the beginning of the array and return the deleted element
    
end

def delete_at_arr(arr, index)
    return arr.delete_at(index)# delete the element at the position #index
    
end

def delete_all(arr, val)
    return arr.delete(val)# delete all the elements of the array where element = val
    
end

coding problems solutions Ruby Solutions

Post navigation

Previous post
Next post

Pages

  • About US
  • Contact US
  • Privacy Policy

Programing Practice

  • C Programs
  • java Programs

HackerRank Solutions

  • C
  • C++
  • Java
  • Python
  • Algorithm

Other

  • Leetcode Solutions
  • Interview Preparation

Programming Tutorials

  • DSA
  • C

CS Subjects

  • Digital Communication
  • Human Values
  • Internet Of Things
  • YouTube
  • LinkedIn
  • Facebook
  • Pinterest
  • Instagram
©2025 Programmingoneonone | WordPress Theme by SuperbThemes