File tree Expand file tree Collapse file tree 7 files changed +126
-53
lines changed Expand file tree Collapse file tree 7 files changed +126
-53
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Bug report
2
+ description : Create a report to help us improve. Report bugs found while using the project
3
+ title : " [BUG]"
4
+ labels : [bug]
5
+ body :
6
+ - type : markdown
7
+ attributes :
8
+ value : " Provide a general summary of the issue in the Title above"
9
+ - type : textarea
10
+ id : description
11
+ attributes :
12
+ label : Description
13
+ description : Provide a general summary of the issue in the Title above
14
+ validations :
15
+ required : true
16
+ - type : input
17
+ id : expectedbhv
18
+ attributes :
19
+ label : Expected behavior
20
+ description : Tell us what should happen
21
+ validations :
22
+ required : true
23
+ - type : input
24
+ id : actualbhv
25
+ attributes :
26
+ label : Actual behavior
27
+ description : Tell us what happens instead
28
+ validations :
29
+ required : true
30
+ - type : input
31
+ id : possiblefix
32
+ attributes :
33
+ label : Possible fix
34
+ description : Not obligatory, but suggest a fix or reason for the bug
35
+ validations :
36
+ required : false
37
+ - type : textarea
38
+ id : steps
39
+ attributes :
40
+ label : Steps to reproduce
41
+ description : |
42
+ Provide a link to a live example, or an unambiguous set of steps to
43
+ reproduce this bug. Include code to reproduce, if relevant
44
+ placeholder : |
45
+ 1.
46
+ 2.
47
+ 3.
48
+ 4.
49
+ validations :
50
+ required : true
51
+ - type : textarea
52
+ id : context
53
+ attributes :
54
+ label : Context
55
+ description : How has this bug affected you? What were you trying to accomplish?
56
+ validations :
57
+ required : true
58
+ - type : textarea
59
+ id : extrainformation
60
+ attributes :
61
+ label : Additional information
62
+ description : Is there anything else we should know about this bug?
63
+ validations :
64
+ required : false
Original file line number Diff line number Diff line change
1
+ blank_issues_enabled : false
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Feature request
2
+ description : Suggest features, propose improvements, discuss new ideas.
3
+ title : " [FEATURE]"
4
+ labels : [enhancement]
5
+ body :
6
+ - type : markdown
7
+ attributes :
8
+ value : Provide a general summary of the issue in the Title above
9
+ - type : textarea
10
+ id : description
11
+ attributes :
12
+ label : Detailed description
13
+ description : Provide a detailed description of the change or addition you are proposing
14
+ validations :
15
+ required : true
16
+ - type : textarea
17
+ id : context
18
+ attributes :
19
+ label : Context
20
+ description : |
21
+ Why is this change important to you? How would you use it?
22
+ How can it benefit other users?
23
+ validations :
24
+ required : true
25
+ - type : textarea
26
+ id : possibleimpl
27
+ attributes :
28
+ label : Possible implementation
29
+ description : Not obligatory, but suggest an idea for implementing addition or change
30
+ validations :
31
+ required : false
32
+ - type : textarea
33
+ id : extrainformation
34
+ attributes :
35
+ label : Additional information
36
+ description : Is there anything else we should know about this feature?
37
+ validations :
38
+ required : false
Original file line number Diff line number Diff line change
1
+ name : Other
2
+ description : Use this for any other issues. Do NOT create blank issues
3
+ title : " [OTHER]"
4
+ labels : [triage]
5
+ body :
6
+ - type : markdown
7
+ attributes :
8
+ value : " # Other issue"
9
+ - type : textarea
10
+ id : issuedescription
11
+ attributes :
12
+ label : What would you like to share?
13
+ description : Provide a clear and concise explanation of your issue.
14
+ validations :
15
+ required : true
16
+ - type : textarea
17
+ id : extrainfo
18
+ attributes :
19
+ label : Additional information
20
+ description : Is there anything else we should know about this issue?
21
+ validations :
22
+ required : false
Original file line number Diff line number Diff line change 267
267
* [ Binary Search] ( https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/binary_search.cpp )
268
268
* [ Exponential Search] ( https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/exponential_search.cpp )
269
269
* [ Fibonacci Search] ( https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/fibonacci_search.cpp )
270
+ * [ Floyd Cycle Detection Algo] ( https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/floyd_cycle_detection_algo.cpp )
270
271
* [ Hash Search] ( https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/hash_search.cpp )
271
272
* [ Interpolation Search] ( https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/interpolation_search.cpp )
272
273
* [ Interpolation Search2] ( https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/interpolation_search2.cpp )
You can’t perform that action at this time.
0 commit comments