Giter Site home page Giter Site logo

aschonely83 / programming-univbasics-4-array-simple-array-manipulations-online-web-prework Goto Github PK

View Code? Open in Web Editor NEW

This project forked from learn-co-students/programming-univbasics-4-array-simple-array-manipulations-online-web-prework

0.0 1.0 0.0 13 KB

License: Other

Ruby 100.00%

programming-univbasics-4-array-simple-array-manipulations-online-web-prework's Introduction

Introduction To Simple Array Manipulations

Learning Goals

  • Identify the result of method calls on arrays
  • Perform simple array manipulations

Introduction

In a previous lab, you learned how to create arrays and access the elements of an array. Now you are ready to manipulate arrays using different Ruby methods.

Fork and clone this lab. Run learn to see the initial test failures, then write the required methods in the lib/introduction_to_simple_array_manipulation.rb file to get the tests to pass.

Consult the official documentation of the Ruby Language for the methods you need to use to solve the problems in this lab.

Identify the Result of Method Calls on Arrays

As you read the method descriptions, make sure to pay attention to understanding what the method returns. For instance, when you call .push on an array, it returns the updated array:

artists = ["Hozier", "Ariana Grande", "Usher"]
next_artist = "Beyonce"
artists.push(next_artist)
# => ["Hozier", "Ariana Grande", "Usher", "Beyonce"]

However, .pop works a little differently; it removes (and returns) the last element from an array:

artists = ["Frida Kahlo", "Pablo Picasso", "Cai Guo-Qiang"]
artists.pop
# => "Cai Guo-Qiang"

artists
# => ["Frida Kahlo", "Pablo Picasso"]

You can see that while .pop removes "Cai Guo-Qiang" from the artists array, .pop also supplies "Cai Guo-Qiang" as its return.

Top-tip: One of the most common problems you will encounter on your journey to becoming a software developer is not knowing what object a method returns. For example, you might assume that the result of a method call is a string but instead it is an array.

Perform Simple Array Manipulations

using_push

This method takes in two arguments, an Array and a String. It adds that string to the end of the array using the .push method.

using_unshift

This method takes in two arguments, an Array and a String and adds that string to the front of the array using the .unshift method.

using_pop

This method takes in argument of an Array and uses the .pop method to remove the last element from the array and return that element.

pop_with_args

This method takes in an argument of an array and uses the pop method with an argument of 2 to remove the last two array items and return them

using_shift

This method takes in an argument of an Array and uses the .shift method to remove the first item and return it.

shift_with_args

This method takes in an argument of an Array and uses the .shift method with an argument of 2 to remove and return the first 2 items from the array.

using_concat

This method takes in two arguments of two different arrays and uses the .concat method to add the contents of the second array to the first.

using_insert

This method takes in two arguments, an Array and a new element to be added to the array. it uses the .insert method to add the new element to the 4th index of the array.

using_uniq

This method takes in an argument of an Array and uses the .uniq method to remove any duplicate items.

using_flatten

This method takes in an argument of an Array that contains other arrays and uses the .flatten method to return an array of strings.

using_delete

This method takes in two arguments, an Array and a String, and uses the .delete method to remove any items from the array that are equal to that string.

using_delete_at

This method takes in two arguments, an Array and an Integer and deletes the element at the index of the array that is equal to that integer.

Conclusion

Now that you've gotten familiar with a few of the methods that the Ruby library provides, you can perform some of the same manipulations you've been practice much more simply.

Resources

programming-univbasics-4-array-simple-array-manipulations-online-web-prework's People

Contributors

aschonely83 avatar jenmyers avatar drakeltheryuujin avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.