Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. clone() {
  2. if(this.head === null && this.tail === null) {
  3. this.head = null
  4. this.tail = null
  5. return new List()
  6. } else if(this.head =! null) {
  7.  
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement