INDAPlus21 / INDAPlus21/boleni-task-7

Pass

Open
#1 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
C
Stars
0
Forks
0
PR merge metrics
No merged PRs in 30d

Description

**Very well done Jonatan!**

Your *cyber_klara.c* looks real crisp :D

Here are some notes on your code:

#### Avstånd till kanten
It is a crime against the great community of C to name a non-minimal-out-of-two-numerics function to `min`.
_Your crime_:
```c
int min(int numbers[], int length) {
int min = numbers[0];
for (int i = 0; i < length; i++) {
if (numbers[i] < min) {
min = numbers[i];
}
}
return min;
}
```

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

The issue discusses the min function in cyber_klara.c and includes its implementation. Read that function first and determine whether the requested naming concern has been clarified; completion would require an agreed name that accurately describes the function, with the surrounding code still compiling and passing its existing checks.

Written by the indexing model from the issue text.

Assessment

Tech stack
c
Domain
tooling
Issue type
Refactor
Difficulty
1/5
Estimated time
Under an hour
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
25/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.