Skip to content

Commit 8c11c04

Browse files
author
Thukor
committed
Merge branch 'master' of github.com:axptwig/swift-algorithm-club
2 parents a125a85 + 1649935 commit 8c11c04

File tree

4 files changed

+0
-221
lines changed

4 files changed

+0
-221
lines changed

.Rhistory

Whitespace-only changes.

README.markdown

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,4 +210,3 @@ Other algorithm repositories:
210210
All content is licensed under the terms of the MIT open source license.
211211

212212
[![Build Status](https://travis-ci.org/hollance/swift-algorithm-club.svg?branch=master)](https://travis-ci.org/hollance/swift-algorithm-club)
213-

README.markdown~

Lines changed: 0 additions & 212 deletions
This file was deleted.

Trie/trie.swift

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,6 @@ public struct Queue<T> {
3131

3232
return element
3333
}
34-
35-
public func peek() -> T? {
36-
if isEmpty {
37-
return nil
38-
} else {
39-
return array[head]
40-
}
41-
}
4234
}
4335
/*
4436
A Trie (Pre-fix Tree)

0 commit comments

Comments
 (0)