Skip to content

Commit

Permalink
Update Fibonacci
Browse files Browse the repository at this point in the history
  • Loading branch information
debkbanerji committed Jan 8, 2018
1 parent 0b0c4b4 commit adf161d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/home/home.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h1>Big-O Cheat Sheet</h1>
<small>Made with ♥ by <a href="https://debkbanerji.com/" target="_blank"
style="color: #212529; text-decoration:none;">Deb Banerji</a>
<br>
<span>v2018.1.5</span>
<span>v2018.1.7</span>
</small>
</mat-expansion-panel>
</div>
Expand Down Expand Up @@ -1550,7 +1550,7 @@ <h2>Algorithms</h2>
</td>
<td *ngFor="let case of ['average', 'worst']">
<span *ngIf="fibonacciAlgorithm === fibonacciAlgorithms[0]"
class="big-o">O(2<sup>n</sup>)</span>
class="big-o">O(((1 + √5)/2)<sup>n</sup>)</span>
<span
*ngIf="fibonacciAlgorithm === fibonacciAlgorithms[1]"
class="big-o">O(n)</span>
Expand Down

0 comments on commit adf161d

Please sign in to comment.