Skip to content

Commit d1ffbc6

Browse files
fix: correct typo and apply prettier formatting
1 parent c8f1220 commit d1ffbc6

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

content/blog/architecture-insights-from-gids-2025.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
title = "Beyond Blueprints: Architecture Insights from GIDS 2025"
33
slug = "architecture-insights-from-gids-2025"
44
date = 2025-06-25T16:04:17+05:30
5-
image = "/images/2025/architechture-insights-from-gids-2025/architecture-insights.png"
5+
image = "/images/2025/architecture-insights-from-gids-2025/architecture-insights.png"
66
draft = true
77
authors = ["Anita Malhotra"]
88
description = ""
99
tags = ["Software Architecture", "Agile Architecture", "Learnings"]
1010
categories = ["Software Architecture", "Agile Architecture", "Learnings"]
11-
type = ""
11+
type = "blog"
1212
+++
1313

1414
What does it really take to design software that lasts?

content/blog/tdd-assessment.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,10 @@ With that, let's jump right in!
5555
```cpp
5656
int add(string numbers)
5757
```
58-
5958
- **Input:** a string of comma-separated numbers
6059
- **Output:** an integer, sum of the numbers
6160
6261
**Examples:**
63-
6462
- **Input:** "", **Output:** 0
6563
- **Input:** "1", **Output:** 1
6664
- **Input:** "1,5", **Output:** 6
@@ -70,12 +68,10 @@ With that, let's jump right in!
7068
3. Allow the `add` method to handle new lines between numbers (instead of commas). (`"1\n2,3"` should return `6`)
7169
7270
4. Support different delimiters:
73-
7471
- To change the delimiter, the beginning of the string will contain a separate line that looks like this: `"//[delimiter]\n[numbers…]"`.
7572
For example, `"//;\n1;2"` where the delimiter is `";"` should return `3`.
7673
7774
5. Calling `add` with a negative number will throw an exception: `"negative numbers not allowed <negative_number>"`.
78-
7975
- If there are multiple negative numbers, show all of them in the exception message, separated by commas.
8076
8177
> Want more? Check out [TDD Kata 1](https://osherove.com/tdd-kata-1/) for the full version. **Extra points** for completing all the steps!

static/images/2025/architechture-insights-from-gids-2025/architecture-insights.png renamed to static/images/2025/architecture-insights-from-gids-2025/architecture-insights.png

File renamed without changes.

0 commit comments

Comments
 (0)