Skip to content

Commit c1554af

Browse files
author
Christian Bender
committed
changed README and corecct comment
1 parent 64b5f49 commit c1554af

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
- TowerOfHanoi
7070
- Greatest Common Divisor
7171
- Sudoku Solver
72+
- prime factorization
7273

7374

7475
## exercism

misc/PrimeFactoriziation.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
AUTHOR: Christian Bender
33
DATE: 12.02.2019
4-
DESCRIPTION: This program calculates the prim factoriziation of a positive integer > 1
4+
DESCRIPTION: This program calculates the prime factoriziation of a positive integer > 1
55
*/
66

77
#include <stdio.h>
@@ -17,8 +17,8 @@
1717

1818
/*
1919
this type is for the representation of the prim factoriziation
20-
- its series/range of prim factors
21-
- its length : numbers of prim factors
20+
- its series/range of prime factors
21+
- its length : numbers of prime factors
2222
*/
2323
typedef struct data
2424
{
@@ -27,7 +27,7 @@ typedef struct data
2727
} range;
2828
typedef range* Range;
2929

30-
/* int_fac : calculates the prim factoriziation of positive integers */
30+
/* int_fac : calculates the prime factoriziation of positive integers */
3131
Range int_fact(int);
3232

3333
/* print_arr : prints the integer (heap) array*/

0 commit comments

Comments
 (0)