Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions PS-Sprint-1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,9 @@
**Topics**: Basic Programming, Mathematical Computations
**Description**: Write a program to find the sum of all even numbers within a given range.
**Example**:
Input: `range = [1, 10]`
Output: `30`
Explanation: The sum of even numbers between 1 and 10 is 2 + 4 + 6 + 8 + 10 = 30.
Input: `range = (1, 10)`
Output: `20`
Explanation: The sum of even numbers between 1 and 10 is 2 + 4 + 6 + 8 = 20.

22. **Calculating the Sum of Odd Numbers in a Range**
**Difficulty**: Easy
Expand Down Expand Up @@ -484,4 +484,4 @@ Finding the Longest Substring Without Repeating Characters**
**Example**:
Input: `string = "abcabcbb"`
Output: `"abc"`
Explanation: The longest substring without repeating characters is "abc".
Explanation: The longest substring without repeating characters is "abc".