Skip to content

Commit

Permalink
Fix grammatical error in omega notation section
Browse files Browse the repository at this point in the history
  • Loading branch information
Maddily authored Oct 3, 2024
1 parent 568d5ad commit b4bf58d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ruby/computer_science/time_complexity.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ If Big O gives us the worst-case scenario of how our algorithm will scale, what

#### Big Ω (omega notation)

Omega Notations gives us the best-case scenario for an algorithm. To understand where this might be, let's look at a method and discuss how we can measure its complexity.
Omega Notation gives us the best-case scenario for an algorithm. To understand where this might be, let's look at a method and discuss how we can measure its complexity.

```ruby
def find_value(arr)
Expand Down

0 comments on commit b4bf58d

Please sign in to comment.