| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-02-14 | Output from #60 adapted | Chris Boesch | |
| 2025-02-14 | Shuttle weight fixed | Chris Boesch | |
| 2025-02-13 | Merge pull request 'Suggesting a third exercise for bit manipulation' (#202) ↵ | Chris Boesch | |
| from alexsisco/zigling-exercises:bit_man3 into main Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/202 | |||
| 2025-02-13 | Merge branch 'main' into bit_man3 | Chris Boesch | |
| 2025-02-13 | fixed spelling of 'bitmask' | Alexander Sisco | |
| 2025-02-13 | fixed formatting | Alexander Sisco | |
| 2025-02-12 | fixed minor spelling and grammar typos | Alexander Sisco | |
| 2025-02-11 | fixed incorrect bitmask in xor example | Alexander Sisco | |
| 2025-02-11 | added header for quiz problems | Alexander Sisco | |
| 2025-02-11 | added blank lines between sections to make them | Alexander Sisco | |
| easier to find | |||
| 2025-02-11 | edited the first two paragraphs | Alexander Sisco | |
| 2025-02-11 | made some simple changes to the wording to reflect | Alexander Sisco | |
| the fact that this is a quiz | |||
| 2025-02-11 | moved explanatory content below the broken code in | Alexander Sisco | |
| main so that the exercise functions more like a quiz | |||
| 2025-02-10 | converted 110 to a quiz (quiz 9) | Alexander Sisco | |
| 2025-02-10 | Merge pull request 'Fix repo link' (#207) from readme into main | Chris Boesch | |
| Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/207 | |||
| 2025-02-10 | Fix repo link | Chris Boesch | |
| 2025-02-09 | Merge branch 'main' into bit_man3 | Chris Boesch | |
| 2025-02-09 | Merge pull request 'Added deletion of progress.txt for eowyn' (#206) from ↵ | Chris Boesch | |
| eowyn_fix into main Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/206 | |||
| 2025-02-09 | Added delte_progress additional to the end of eowyn | Chris Boesch | |
| 2025-02-09 | Added deletion of progress.txt for eowyn | Chris Boesch | |
| 2025-02-09 | Merge pull request 'issue201-adding-progress-tracking' (#203) from ↵ | Chris Boesch | |
| zendril/exercises:issue201-adding-progress-tracking into main Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/203 | |||
| 2025-02-09 | Merge pull request 'Skip 74, the compiler corrects this now.' (#205) from ↵ | Chris Boesch | |
| i204 into main Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/205 | |||
| 2025-02-09 | Skip 74, the compiler corrects this now. | Chris Boesch | |
| 2025-02-08 | added patch file for exercise 110 | Alexander Sisco | |
| 2025-02-08 | format fix | Alexander Sisco | |
| 2025-02-04 | cleanup for PR | Zendril | |
| 2025-02-04 | cleanup for PR | Zendril | |
| 2025-02-04 | cleanup for PR | Zendril | |
| 2025-02-04 | cleanup for PR | Zendril | |
| 2025-02-04 | tracking, skipping and reset all wired in | Zendril | |
| 2025-02-04 | fmt | Zendril | |
| 2025-02-04 | reset and completed exercise tracking wired in | Zendril | |
| 2025-02-04 | added newline between toggle and set sections to | Alexander Sisco | |
| make the expected output match | |||
| 2025-02-04 | rearranged order of expected output in build.zig | Alexander Sisco | |
| 2025-02-04 | changed the order of the sections to improve flow | Alexander Sisco | |
| 2025-02-03 | Suggesting a third exercise for bit manipulation | Alexander Sisco | |
| 2025-01-09 | Merge pull request 'Use print alias in exercise 100_for4.zig' (#198) from ↵ | Chris Boesch | |
| Zorgatone/ziglings-solutions:use-print-alias into main Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/198 | |||
| 2025-01-08 | Merge pull request 'Update: 108 Labeled switch example to contain default ↵ | Chris Boesch | |
| case for exhaustion' (#196) from mikkurogue/exercises:main into main Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/196 closes #195 | |||
| 2025-01-08 | Merge branch 'main' into main | Chris Boesch | |
| 2025-01-08 | Update exercises/108_labeled_switch.zig | chrboesch | |
| Fixed an error in the debug statement and made the text a bit more coherent. Signed-off-by: chrboesch <chrboesch@noreply.codeberg.org> | |||
| 2025-01-08 | Update exercises/108_labeled_switch.zig | chrboesch | |
| The sentence was slightly unclear Signed-off-by: chrboesch <chrboesch@noreply.codeberg.org> | |||
| 2025-01-07 | Fix a typo: we need do we need to -> we need to | mikkurogue | |
| Morning delirium does not help when looking at lots of words | |||
| 2025-01-07 | Fix patch after print alias fix in 100_fo4.zig | Zorgatone | |
| 2025-01-07 | Use print alias in exercise 100_for4.zig | Zorgatone | |
| 2025-01-07 | Update: Remove the 4th branch in favour of just making that the else branch | mikkurogue | |
| Probably easier to not have an "unused" branch that returns the same as the else branch in the example. Signed-off-by: mikkurogue <mikkurogue@noreply.codeberg.org> | |||
| 2025-01-04 | Merge pull request 'Fix typo vaild → valid' (#197) from ↵ | Chris Boesch | |
| zyzzyxdonta/ziglings-exercises:fix-typo-vaild-valid into main Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/197 | |||
| 2025-01-04 | Fix typo vaild → valid | David Pape | |
| 2025-01-04 | Update: 108 Labeled switch example to contain default case for exhaustion | mikkurogue | |
| Update example text to give clarity on default/exhaustive case. Reasoning: The input for the example will not compile if user would want to test this for the logic of a labeled switch. Due the input not being an exhaustive input but rather "any u8 integer" (for the lack of better terminology) we need to use the else branch to indicate that the default case is handled, in this case by just emulating the '4' branch, but this could return an error.InvalidCaseProvided for example. Signed-off-by: mikkurogue <michael.lindemans@outlook.com> | |||
| 2024-12-22 | Merge pull request 'Updated credits' (#192) from readme into main | Chris Boesch | |
| Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/192 | |||
| 2024-12-22 | Updated credits | Chris Boesch | |
